# PHP пакет для обработки ошибок

Пакет HttpSoft\ErrorHandler реализует Psr\Http\Server\MiddlewareInterface и Psr\Http\Server\RequestHandlerInterface.

Для этого пакета требуется PHP версии 7.4 или более поздней.

Установка пакета:

composer require httpsoft/http-error-handler

Исходный код на GitHub.

# API

Интерфейсы:

# Использование

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 смотрите здесь.