1 | <?php |
||
7 | class ServiceOptionsResolver |
||
8 | { |
||
9 | /** @var Config */ |
||
10 | private $config; |
||
11 | |||
12 | /** |
||
13 | * ServiceOptionsResolver constructor. |
||
14 | * @param Config $config |
||
15 | */ |
||
16 | public function __construct(Config $config) |
||
20 | |||
21 | /** |
||
22 | * @param string $identifier |
||
23 | * |
||
24 | * @return ServiceOptions |
||
25 | */ |
||
26 | public function getOptionsFor(string $identifier) |
||
47 | } |
||
48 |