From c2f2d30faa9724d4e428a12caa68850091532dd8 Mon Sep 17 00:00:00 2001 From: andig Date: Tue, 21 Nov 2017 21:00:43 +0100 Subject: [PATCH] Remove AsyncInterface --- Bridges/HttpKernel.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Bridges/HttpKernel.php b/Bridges/HttpKernel.php index fab72e7..87641e9 100644 --- a/Bridges/HttpKernel.php +++ b/Bridges/HttpKernel.php @@ -7,7 +7,6 @@ use PHPPM\Bootstraps\HooksInterface; use PHPPM\Bootstraps\RequestClassProviderInterface; use PHPPM\Utils; -use React\EventLoop\LoopInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\ResponseInterface; use RingCentral\Psr7; @@ -44,9 +43,8 @@ class HttpKernel implements BridgeInterface * @param string $appBootstrap The name of the class used to bootstrap the application * @param string|null $appenv The environment your application will use to bootstrap (if any) * @param boolean $debug If debug is enabled - * @param LoopInterface $loop Event loop */ - public function bootstrap($appBootstrap, $appenv, $debug, LoopInterface $loop) + public function bootstrap($appBootstrap, $appenv, $debug) { $appBootstrap = $this->normalizeAppBootstrap($appBootstrap);