| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 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) |
|
| 30 | { |
||
| 31 | 3 | $this->_file = $file; |
|
| 32 | 3 | } |
|
| 33 | |||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | 3 | public function readConfiguration() |
|
| 52 | } |
||
| 53 | } |
||
| 56 |