1 | <?php |
||
5 | class NginxConfigFile |
||
6 | { |
||
7 | /** @var string */ |
||
8 | protected $configContent; |
||
9 | |||
10 | public function __construct(string $configContent) |
||
14 | |||
15 | public function configContent(): string |
||
19 | |||
20 | public function siteName(): string |
||
26 | |||
27 | public function serverPort(): ?string |
||
33 | |||
34 | public function protocol(): string |
||
40 | |||
41 | public function shouldBeMonitoredByOhDear(): bool |
||
45 | } |
||
46 |