| 1 | <?php |
||
| 9 | class ErrorHandler |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var callable |
||
| 13 | */ |
||
| 14 | private $pluginChain; |
||
| 15 | /** |
||
| 16 | * @param ErrorHandlerPluginInterface[] $plugins |
||
| 17 | */ |
||
| 18 | 70 | public function __construct(array $plugins) |
|
| 22 | |||
| 23 | 19 | public function handle($error, ExecutionContext $executionContext) |
|
| 28 | |||
| 29 | 70 | private function createPluginChain($pluginList) |
|
| 42 | } |
||
| 43 |