1 | <?php |
||
20 | class ProfilingInstructionsRendererFactory extends AbstractInstructionsRendererFactory |
||
21 | { |
||
22 | /** |
||
23 | * Profiling instructions renderer class |
||
24 | */ |
||
25 | const ENGINE_CLASS = ProfilingInstructionsRenderer::class; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function createService(ServiceLocatorInterface $services) |
||
37 | } |
||
38 |
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: