| 1 | <?php |
||
| 19 | class Yaml extends AbstractFileParser |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * {@inheritDoc} |
||
| 23 | * Loads a YAML/YML file as an array |
||
| 24 | * |
||
| 25 | * @throws ParseException If there is an error parsing YAML/YML file |
||
| 26 | * @since 0.1.0 |
||
| 27 | */ |
||
| 28 | 6 | public function parse($path) |
|
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritDoc} |
||
| 52 | */ |
||
| 53 | 3 | public function getSupportedFileExtensions() |
|
| 57 | } |
||
| 58 | |||
| 60 |