1 | <?php |
||
15 | final class ExceptionHandlerDelegate implements SubscriberExceptionHandler |
||
16 | { |
||
17 | /** |
||
18 | * @var SubscriberExceptionHandler[] |
||
19 | */ |
||
20 | private $handlers; |
||
21 | |||
22 | /** |
||
23 | * @param SubscriberExceptionHandler[] $handlers |
||
24 | */ |
||
25 | public function __construct(array $handlers = []) |
||
29 | |||
30 | public function handleException(Exception $exception, SubscriberExceptionContext $context) |
||
36 | } |
||
37 |