Jarves\Router\FrontendRouter::__construct PHP Метод

__construct() публичный Метод

FrontendRouter constructor.
public __construct ( Jarves $jarves, PageStack $pageStack, StopwatchHelper $stopwatch, Psr\Log\LoggerInterface $logger, Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher, Cacher $cacher )
$jarves Jarves\Jarves
$pageStack Jarves\PageStack
$stopwatch Jarves\StopwatchHelper
$logger Psr\Log\LoggerInterface
$eventDispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$cacher Jarves\Cache\Cacher
    function __construct(Jarves $jarves, PageStack $pageStack, StopwatchHelper $stopwatch, LoggerInterface $logger, EventDispatcherInterface $eventDispatcher, Cacher $cacher)
    {
        $this->jarves = $jarves;
        $this->stopwatch = $stopwatch;
        $this->logger = $logger;
        $this->eventDispatcher = $eventDispatcher;
        $this->cacher = $cacher;
        $this->pageStack = $pageStack;
    }