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