Contao\CoreBundle\Framework\ContaoFramework::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Symfony\Component\HttpFoundation\RequestStack $requestStack, Symfony\Component\Routing\RouterInterface $router, Symfony\Component\HttpFoundation\Session\SessionInterface $session, string $rootDir, integer $errorLevel )
$requestStack Symfony\Component\HttpFoundation\RequestStack
$router Symfony\Component\Routing\RouterInterface
$session Symfony\Component\HttpFoundation\Session\SessionInterface
$rootDir string
$errorLevel integer
    public function __construct(RequestStack $requestStack, RouterInterface $router, SessionInterface $session, $rootDir, $errorLevel)
    {
        $this->router = $router;
        $this->session = $session;
        $this->rootDir = $rootDir;
        $this->errorLevel = $errorLevel;
        $this->requestStack = $requestStack;
    }