Skip to content

Remove AsyncInterface #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Bridges/HttpKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);

Expand Down