Jarves\PageResponseFactory::__construct PHP Method

__construct() public method

public __construct ( Jarves $jarves, PageStack $pageStack, StopwatchHelper $stopwatch, Container $assetCompilerContainer, Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher, Symfony\Component\Templating\EngineInterface $templating, EditMode $editMode, Router $router, Cacher $cacher )
$jarves Jarves
$pageStack PageStack
$stopwatch StopwatchHelper
$assetCompilerContainer Jarves\AssetHandler\Container
$eventDispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
$templating Symfony\Component\Templating\EngineInterface
$editMode EditMode
$router Symfony\Component\Routing\Router
$cacher Jarves\Cache\Cacher
    public function __construct(Jarves $jarves, PageStack $pageStack, StopwatchHelper $stopwatch, Container $assetCompilerContainer, EventDispatcherInterface $eventDispatcher, EngineInterface $templating, EditMode $editMode, Router $router, Cacher $cacher)
    {
        $this->jarves = $jarves;
        $this->stopwatch = $stopwatch;
        $this->assetCompilerContainer = $assetCompilerContainer;
        $this->eventDispatcher = $eventDispatcher;
        $this->templating = $templating;
        $this->editMode = $editMode;
        $this->pageStack = $pageStack;
        $this->router = $router;
        $this->cacher = $cacher;
    }