1 | <?php |
||
13 | class ConfigurationLoader implements ConfigurationLoaderInterface |
||
14 | { |
||
15 | /** @var Finder */ |
||
16 | private $finder; |
||
17 | /** @var SerializerInterface */ |
||
18 | private $serializer; |
||
19 | |||
20 | 3 | public function __construct(Finder $finder, SerializerInterface $serializer) |
|
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 2 | public function fromPath($path) |
|
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | 2 | public function fromString($serializedConfiguration) |
|
67 | } |
||
68 |