1 | <?php |
||
21 | class Request extends \hiqdev\hiart\proxy\Request |
||
22 | { |
||
23 | protected $responseClass = Response::class; |
||
24 | |||
25 | protected $handlerClass = Handler::class; |
||
26 | |||
27 | 2 | protected function createWorker() |
|
31 | |||
32 | 2 | protected function prepareHandlerConfig($config) |
|
38 | |||
39 | public static function isSupported() |
||
43 | } |
||
44 |
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: