| 1 | <?php |
||
| 10 | class DelegateSnapshot extends QuickSnapshot |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var HandlerInterface |
||
| 14 | */ |
||
| 15 | private $handler; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var Snapshot |
||
| 19 | */ |
||
| 20 | private $snapshot; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * DelegateSnapshot constructor. |
||
| 24 | * |
||
| 25 | * @param \Throwable $exception |
||
| 26 | * @param LoggerInterface $logger |
||
| 27 | * @param FactoryInterface $factory |
||
| 28 | * @param HandlerInterface $handler |
||
| 29 | */ |
||
| 30 | public function __construct( |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function report() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * {@inheritdoc} |
||
| 56 | */ |
||
| 57 | public function render(): string |
||
| 61 | } |