1 | <?php |
||
11 | class ExceptionMiddleware |
||
12 | { |
||
13 | /** |
||
14 | * @var \DebugBar\DataCollector\ExceptionsCollector |
||
15 | */ |
||
16 | private $collector; |
||
17 | |||
18 | /** |
||
19 | * ExceptionMiddleware constructor. |
||
20 | * |
||
21 | * @param \DebugBar\DataCollector\ExceptionsCollector $collector |
||
22 | */ |
||
23 | 3 | public function __construct(ExceptionsCollector $collector) |
|
27 | |||
28 | /** |
||
29 | * @param callable $handler |
||
30 | * |
||
31 | * @return callable |
||
32 | */ |
||
33 | 3 | public function __invoke(callable $handler): callable |
|
46 | } |
||
47 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.