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) |
|
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | 3 | public function getSupportedFileExtensions() |
|
57 | } |
||
58 | |||
60 |