1 | <?php |
||
19 | class Php implements ParserInterface |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | * Loads a PHP file and gets its' contents as an array |
||
24 | * |
||
25 | * @throws ParseException If the PHP file throws an exception |
||
26 | * @throws UnsupportedFormatException If the PHP file does not return an array |
||
27 | */ |
||
28 | 12 | public function parseFile($filename) |
|
45 | |||
46 | /** |
||
47 | * {@inheritDoc} |
||
48 | *Loads a PHP string and gets its' contents as an array |
||
49 | * |
||
50 | * @throws ParseException If the PHP string throws an exception |
||
51 | * @throws UnsupportedFormatException If the PHP string does not return an array |
||
52 | */ |
||
53 | 9 | public function parseString($config) |
|
76 | |||
77 | /** |
||
78 | * Completes parsing of PHP data |
||
79 | * |
||
80 | * @param array $data |
||
81 | * @param strring $filename |
||
82 | * |
||
83 | * @throws ParseException If there is an error parsing the PHP data |
||
84 | */ |
||
85 | 9 | protected function parse($data = null, $filename = null) |
|
99 | |||
100 | /** |
||
101 | * {@inheritDoc} |
||
102 | */ |
||
103 | 3 | public static function getSupportedExtensions() |
|
107 | } |
||
108 |
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: