| 1 | <?php |
||
| 8 | class PsrLogger implements ErrorHandlerPluginInterface |
||
| 9 | { |
||
| 10 | /** @var LoggerInterface */ |
||
| 11 | private $logger; |
||
| 12 | |||
| 13 | /** @var mixed */ |
||
| 14 | private $logLevel; |
||
| 15 | |||
| 16 | public function __construct(LoggerInterface $logger, $logLevel) |
||
| 21 | |||
| 22 | public function execute($error, ExecutionContext $executionContext, callable $next) |
||
| 28 | } |
||
| 29 |