1 | <?php |
||
12 | class HttpServer |
||
13 | { |
||
14 | private $socket; |
||
15 | private $http; |
||
16 | private $logger; |
||
17 | private $handlers; |
||
18 | |||
19 | public function __construct($port, LoopInterface $loop, LoggerInterface $logger) |
||
31 | |||
32 | public function addHandler(callable $handler) |
||
36 | |||
37 | public function request(HttpRequest $request, HttpResponse $response) |
||
47 | |||
48 | public function error(Exception $exception) |
||
53 | } |
||
54 |