| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | \Throwable $exception, |
||
| 32 | LoggerInterface $logger, |
||
| 33 | FactoryInterface $factory, |
||
| 34 | HandlerInterface $handler |
||
| 35 | ) { |
||
| 36 | parent::__construct($exception, $logger); |
||
| 37 | |||
| 38 | $this->snapshot = $factory->make(Snapshot::class, compact('exception')); |
||
| 39 | $this->handler = $handler; |
||
| 40 | } |
||
| 41 | |||
| 61 | } |