1 | <?php |
||
13 | class Server |
||
14 | { |
||
15 | protected $requestFactory; |
||
16 | protected $handler; |
||
17 | protected $errorHandler; |
||
18 | protected $emitter; |
||
19 | |||
20 | 2 | public function __construct(PhpServerRequestFactoryInterface $requestFactory, RequestHandlerInterface $handler, ErrorHandlerInterface $errorHandler, EmitterInterface $emitter) |
|
27 | |||
28 | 2 | public function run(): void |
|
41 | } |