1 | <?php |
||
13 | class ConfigExpertManager |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientPool |
||
17 | */ |
||
18 | private $clientPool; |
||
19 | |||
20 | /** |
||
21 | * @var VhostManager |
||
22 | */ |
||
23 | private $vhostManager; |
||
24 | |||
25 | public function __construct(ClientPool $clientPool, VhostManager $vhostManager) |
||
30 | |||
31 | /** |
||
32 | * Check config with option resolver. |
||
33 | * Apply each vhost config with VhostManager |
||
34 | * |
||
35 | * @param array $config |
||
36 | */ |
||
37 | public function manageConfig(array $config) |
||
45 | } |
||
46 |