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) |
|
29 | { |
||
30 | // Run the fileEval the string, if it throws an exception, rethrow it |
||
31 | try { |
||
32 | 12 | $data = require $filename; |
|
33 | 3 | } catch (Exception $exception) { |
|
34 | 3 | throw new ParseException( |
|
35 | [ |
||
36 | 3 | 'message' => 'PHP file threw an exception', |
|
37 | 3 | 'exception' => $exception, |
|
38 | ] |
||
39 | ); |
||
40 | } |
||
41 | |||
42 | // Complete parsing |
||
43 | 9 | return $this->parse($data, $filename); |
|
|
|||
44 | } |
||
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) |
|
54 | { |
||
55 | // Handle PHP start tag |
||
56 | 9 | $config = trim($config); |
|
57 | 9 | if (substr($config, 0, 2) === '<?') { |
|
58 | 9 | $config = '?>' . $config; |
|
59 | } |
||
60 | |||
61 | // Eval the string, if it throws an exception, rethrow it |
||
62 | try { |
||
63 | 9 | $data = eval($config); |
|
64 | 3 | } catch (Exception $exception) { |
|
65 | 3 | throw new ParseException( |
|
66 | [ |
||
67 | 3 | 'message' => 'PHP string threw an exception', |
|
68 | 3 | 'exception' => $exception, |
|
69 | ] |
||
70 | ); |
||
71 | } |
||
72 | |||
73 | // Complete parsing |
||
74 | 6 | return $this->parse($data); |
|
75 | } |
||
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) |
|
86 | { |
||
87 | // If we have a callable, run it and expect an array back |
||
88 | 9 | if (is_callable($data)) { |
|
89 | 3 | $data = call_user_func($data); |
|
90 | } |
||
91 | |||
92 | // Check for array, if its anything else, throw an exception |
||
93 | 9 | if (!is_array($data)) { |
|
94 | 3 | throw new UnsupportedFormatException('PHP data does not return an array'); |
|
95 | } |
||
96 | |||
97 | 6 | return $data; |
|
98 | } |
||
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: