Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

httpsoft/http-error-handler

Repository files navigation

HTTP Error Handler

This package implements Psr\Http\Server\MiddlewareInterface and Psr\Http\Server\RequestHandlerInterface.

Documentation

Installation

This package requires PHP version 7.4 or later.

composer require httpsoft/http-error-handler

Usage ErrorHandler

use HttpSoft\ErrorHandler\ErrorHandler;

/**
* @var Psr\Http\Message\ServerRequestInterface $request
* @var Psr\Http\Server\RequestHandlerInterface $handler
*
* @var HttpSoft\ErrorHandler\ErrorListenerInterface $logErrorListener
* @var HttpSoft\ErrorHandler\ErrorListenerInterface $sendErrorListener
* @var HttpSoft\ErrorHandler\ErrorResponseGeneratorInterface $responseGenerator
*/

$errorHandler = new ErrorHandler($handler, $responseGenerator);

$errorHandler->addListener($logErrorListener);
$errorHandler->addListener($sendErrorListener);

/** @var \Psr\Http\Message\ResponseInterface $response */
$response = $errorHandler->handle($request);

Usage ErrorHandlerMiddleware

use HttpSoft\ErrorHandler\ErrorHandlerMiddleware;

/**
* @var Psr\Http\Message\ServerRequestInterface $request
* @var Psr\Http\Server\RequestHandlerInterface $handler
*
* @var HttpSoft\ErrorHandler\ErrorListenerInterface $logErrorListener
* @var HttpSoft\ErrorHandler\ErrorListenerInterface $sendErrorListener
* @var HttpSoft\ErrorHandler\ErrorResponseGeneratorInterface $responseGenerator
*/

$errorHandler = new ErrorHandlerMiddleware($responseGenerator);

$errorHandler->addListener($logErrorListener);
$errorHandler->addListener($sendErrorListener);

/** @var \Psr\Http\Message\ResponseInterface $response */
$response = $errorHandler->process($request, $handler);

About

Error handling PSR-7 and PSR-15 components

Topics

Resources

Readme

License

MIT license

Code of conduct

Code of conduct

Security policy

Security policy

Stars

Watchers

Forks

Contributors

Languages