Larabros\Elogram\Http\Middleware\AbstractMiddleware::__construct PHP 메소드

__construct() 보호된 메소드

Creates an instance of :php:class:AbstractMiddleware.
또한 보기: AbstractMiddleware::create()
protected __construct ( callable $nextHandler, Noodlehaus\ConfigInterface $config )
$nextHandler callable
$config Noodlehaus\ConfigInterface
    protected function __construct(callable $nextHandler, ConfigInterface $config)
    {
        $this->nextHandler = $nextHandler;
        $this->config = $config;
    }
AbstractMiddleware