Reporter

Logs exceptions that occur further inside the layer pipeline.

class Reporter implements Plugin
Copyright
2015-2016 Appertly
License
Apache-2.0

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(ErrorLogger $errorLogger)

Creates a new error Reporter.

Instance Methods

Public
ReturnsSignature and Description
ResponseInterface
__invoke(ServerRequestInterface $request, ResponseInterface $response, (function(Request,Response):Response) $next)

Middleware request–response handling.

int

Gets the plugin priority; larger means first.

Method Details

__construct

public function __construct(ErrorLogger $errorLogger)

Creates a new error Reporter.

Parameters
NameTypeDescription
$errorLoggerErrorLogger

The error logger

__invoke

public function __invoke(ServerRequestInterface $request, ResponseInterface $response, (function(Request,Response):Response) $next)

Middleware request–response handling.

Performs a typical passthru (i.e. return $next($req, $res);), but in the event an Exception occurs, the $errorLogger is called, then the Exception is rethrown (most likely to be caught higher in the queue).

Parameters
NameTypeDescription
$requestServerRequestInterface

The server request

$responseResponseInterface

The response

$next(function(Request,Response):Response)
Returns
TypeDescription
ResponseInterface

The response

Throws
TypeConditions
Exception

rethrows any exception that occurs after logging.

getPriority

public function getPriority()

Gets the plugin priority; larger means first.

Returns
TypeDescription
int

The plugin priority