1 | <?php |
||
15 | class YamlReader implements ReaderInterface |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $_file; |
||
22 | |||
23 | |||
24 | /** |
||
25 | * YamlReader constructor. |
||
26 | * |
||
27 | * @param string $file |
||
28 | */ |
||
29 | 3 | public function __construct($file) |
|
33 | |||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 3 | public function readConfiguration() |
|
54 | |||
55 | } |
||
56 |