1 | <?php |
||
22 | class ConfigLocator extends AbstractConfigLocator |
||
23 | { |
||
24 | /** @var array */ |
||
25 | protected $config; |
||
26 | |||
27 | /** |
||
28 | * @param array $config Payload locator configuration |
||
29 | */ |
||
30 | public function __construct(array $config = []) |
||
34 | |||
35 | /** |
||
36 | * Get the blob of config data. |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | protected function getConfig() |
||
44 | } |
||
45 |