From 8e33ffcefa158d4766eb0afa6f9963dfb37e7643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=A9rub=C3=A9?= Date: Sat, 5 Oct 2019 14:56:44 -0600 Subject: [PATCH] use custom response emitter instead of Slim's default emitter --- src/Application/Handlers/ShutdownHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Handlers/ShutdownHandler.php b/src/Application/Handlers/ShutdownHandler.php index 590a5b3d..323f16af 100644 --- a/src/Application/Handlers/ShutdownHandler.php +++ b/src/Application/Handlers/ShutdownHandler.php @@ -3,9 +3,9 @@ namespace App\Application\Handlers; +use App\Application\ResponseEmitter\ResponseEmitter; use Psr\Http\Message\ServerRequestInterface as Request; use Slim\Exception\HttpInternalServerErrorException; -use Slim\ResponseEmitter; class ShutdownHandler {