PHP Class Larabros\Elogram\Http\Middleware\AbstractMiddleware

Inheritance: implements Larabros\Elogram\Http\Middleware\MiddlewareInterface
Afficher le fichier Open project: larabros/elogram Class Usage Examples

Protected Properties

Свойство Type Description
$config Noodlehaus\ConfigInterface The application configuration.
$nextHandler callable The next handler in the stack.

Méthodes publiques

Méthode Description
__invoke ( Psr\Http\Message\RequestInterface $request, array $options ) {@inheritDoc}

Méthodes protégées

Méthode Description
__construct ( callable $nextHandler, Noodlehaus\ConfigInterface $config ) Creates an instance of :php:class:AbstractMiddleware.

Method Details

__construct() protected méthode

Creates an instance of :php:class:AbstractMiddleware.
See also: AbstractMiddleware::create()
protected __construct ( callable $nextHandler, Noodlehaus\ConfigInterface $config )
$nextHandler callable
$config Noodlehaus\ConfigInterface

__invoke() public méthode

{@inheritDoc}
public __invoke ( Psr\Http\Message\RequestInterface $request, array $options )
$request Psr\Http\Message\RequestInterface
$options array

Property Details

$config protected_oe property

The application configuration.
protected ConfigInterface,Noodlehaus $config
Résultat Noodlehaus\ConfigInterface

$nextHandler protected_oe property

The next handler in the stack.
protected callable $nextHandler
Résultat callable