1 | <?php |
||
16 | final class HttpServerFactory |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $outputDirectory; |
||
22 | |||
23 | /** |
||
24 | * @var ConsoleIo |
||
25 | */ |
||
26 | private $consoleIo; |
||
27 | |||
28 | /** |
||
29 | * @var int |
||
30 | */ |
||
31 | private $port; |
||
32 | |||
33 | public function __construct(string $outputDirectory, ConsoleIo $consoleIo, int $port = 8000) |
||
39 | |||
40 | public function create() : HttpServer |
||
44 | } |
||
45 | |||
46 |