Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
Test SwooleBundle HttpDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
k911 committed May 29, 2018
1 parent 9d4e08c commit eab7f84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bridge/Symfony/HttpKernel/HttpKernelHttpDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ final class HttpKernelHttpDriver implements HttpDriverInterface
private $requestFactory;
private $responseProcessor;

public function __construct(KernelInterface $kernel, RequestFactoryInterface $requestFactory, ResponseProcessorInterface $responseHandler)
public function __construct(KernelInterface $kernel, RequestFactoryInterface $requestFactory, ResponseProcessorInterface $responseProcessor)
{
$this->kernel = $kernel;
$this->requestFactory = $requestFactory;
$this->responseProcessor = $responseHandler;
$this->responseProcessor = $responseProcessor;
}

/**
Expand Down

0 comments on commit eab7f84

Please sign in to comment.