1 | <?php |
||
19 | class Toml extends AbstractFileParser |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | * Loads a TOML file as an array |
||
24 | * |
||
25 | * @throws ParseException If there is an error parsing TOML file |
||
26 | * @since 0.1.0 |
||
27 | */ |
||
28 | 6 | public function parse($path) |
|
44 | |||
45 | /** |
||
46 | * {@inheritDoc} |
||
47 | */ |
||
48 | 3 | public function getSupportedFileExtensions() |
|
52 | } |
||
53 | |||
55 |