# PHP пакет для обработки ошибок
Пакет HttpSoft\ErrorHandler реализует Psr\Http\Server\MiddlewareInterface и Psr\Http\Server\RequestHandlerInterface.
Для этого пакета требуется PHP версии 7.4 или более поздней.
Установка пакета:
composer require httpsoft/http-error-handler
# API
- HttpSoft\ErrorHandler\ErrorHandler — класс, реализующий Psr\Http\Server\RequestHandlerInterface.
- HttpSoft\ErrorHandler\ErrorHandlerMiddleware — класс, реализующий Psr\Http\Server\MiddlewareInterface.
- HttpSoft\ErrorHandler\ErrorHandlerTrait — трейт, содержащий методы для обработки ошибок, используется внутри HttpSoft\ErrorHandler\ErrorHandler и HttpSoft\ErrorHandler\ErrorHandlerMiddleware.
- HttpSoft\ErrorHandler\ErrorResponseGenerator — генератор ответа с информацией об обработанной ошибке по умолчанию, реализует HttpSoft\ErrorHandler\ErrorResponseGeneratorInterface.
Интерфейсы:
- HttpSoft\ErrorHandler\ErrorListenerInterface.
- HttpSoft\ErrorHandler\ErrorResponseGeneratorInterface.
# Использование
use HttpSoft\ErrorHandler\ErrorHandler;
use HttpSoft\ErrorHandler\ErrorHandlerMiddleware;
/**
* @var Psr\Http\Message\ServerRequestInterface $request
* @var Psr\Http\Server\RequestHandlerInterface $handler
* @var HttpSoft\ErrorHandler\ErrorListenerInterface $listener
* @var HttpSoft\ErrorHandler\ErrorResponseGeneratorInterface $responseGenerator
*/
// Использование ErrorHandler
$errorHandler = new ErrorHandler($handler, $responseGenerator);
$errorHandler->addListener($listener);
$response = $errorHandler->handle($request);
// Использование ErrorHandlerMiddleware
$errorHandler = new ErrorHandlerMiddleware($responseGenerator);
$errorHandler->addListener($listener);
$response = $errorHandler->process($request, $handler);
Подробное описание использования HttpSoft\ErrorHandler\ErrorHandler
смотрите здесь.
Подробное описание использования HttpSoft\ErrorHandler\ErrorHandlerMiddleware
смотрите здесь.
Подробное описание использования HttpSoft\ErrorHandler\ErrorHandlerTrait
смотрите здесь.