Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
13 | abstract class AbstractConfigurableHostHelper |
||
14 | { |
||
15 | /** |
||
16 | * @var Configurator |
||
17 | */ |
||
18 | protected Configurator $configurator; |
||
19 | |||
20 | public function __construct(Configurator $configurator) |
||
23 | } |
||
24 | |||
25 | public function addHost(string $host): void |
||
35 | } |
||
36 | |||
37 | abstract protected function getSiteId(): string; |
||
38 | } |