1 | <?php |
||
10 | class ErrorHandler |
||
11 | { |
||
12 | |||
13 | use Singleton; |
||
14 | |||
15 | /** |
||
16 | * |
||
17 | * @var Run |
||
18 | */ |
||
19 | protected $whoops = null; |
||
20 | |||
21 | /** |
||
22 | * |
||
23 | * @var Handler |
||
24 | */ |
||
25 | protected $handler = null; |
||
26 | |||
27 | protected function __construct() |
||
32 | |||
33 | /** |
||
34 | * Set the proper Error Handler based on the Output of the page |
||
35 | * |
||
36 | * @param \Whoops\Handler\Handler $handler |
||
37 | */ |
||
38 | public function setHandler(Handler $handler) |
||
44 | |||
45 | /** |
||
46 | * Set Whoops as the default error and exception handler used by PHP: |
||
47 | */ |
||
48 | public function register() |
||
52 | |||
53 | /** |
||
54 | * Disable Whoops as the default error and exception handler used by PHP: |
||
55 | */ |
||
56 | public function unregister() |
||
60 | |||
61 | /** |
||
62 | * Added extra information for debug purposes on the error handler screen |
||
63 | * |
||
64 | * @param string $name |
||
65 | * @param string $value |
||
66 | */ |
||
67 | public function addExtraInfo($name, $value) |
||
74 | } |
||
75 |
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: