1 | <?php |
||
19 | class Yaml implements ParserInterface |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | * Loads a YAML/YML file as an array |
||
24 | * |
||
25 | * @throws ParseException If If there is an error parsing the YAML file |
||
26 | */ |
||
27 | 6 | public function parseFile($filename) |
|
28 | { |
||
29 | try { |
||
30 | 6 | $data = YamlParser::parseFile($filename, YamlParser::PARSE_CONSTANT); |
|
31 | 3 | } catch (Exception $exception) { |
|
32 | 3 | throw new ParseException( |
|
33 | [ |
||
34 | 3 | 'message' => 'Error parsing YAML file', |
|
35 | 3 | 'exception' => $exception, |
|
36 | ] |
||
37 | ); |
||
38 | } |
||
39 | |||
40 | 3 | return $this->parse($data, $filename); |
|
|
|||
41 | } |
||
42 | |||
43 | /** |
||
44 | * {@inheritDoc} |
||
45 | * Loads a YAML/YML string as an array |
||
46 | * |
||
47 | * @throws ParseException If If there is an error parsing the YAML string |
||
48 | */ |
||
49 | 6 | public function parseString($config) |
|
50 | { |
||
51 | try { |
||
52 | 6 | $data = YamlParser::parse($config, YamlParser::PARSE_CONSTANT); |
|
53 | 3 | } catch (Exception $exception) { |
|
54 | 3 | throw new ParseException( |
|
55 | [ |
||
56 | 3 | 'message' => 'Error parsing YAML string', |
|
57 | 3 | 'exception' => $exception, |
|
58 | ] |
||
59 | ); |
||
60 | } |
||
61 | |||
62 | 3 | return $this->parse($data); |
|
63 | } |
||
64 | |||
65 | /** |
||
66 | * Completes parsing of YAML/YML data |
||
67 | * |
||
68 | * @param array $data |
||
69 | * @param strring $filename |
||
70 | * |
||
71 | * @throws ParseException If there is an error parsing the YAML data |
||
72 | */ |
||
73 | 6 | protected function parse($data = null, $filename = null) |
|
77 | |||
78 | /** |
||
79 | * {@inheritDoc} |
||
80 | */ |
||
81 | 3 | public static function getSupportedExtensions() |
|
85 | } |
||
86 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: