Backend\Core\Engine\Url::__construct PHP Method

__construct() public method

public __construct ( Symfony\Component\HttpKernel\KernelInterface $kernel )
$kernel Symfony\Component\HttpKernel\KernelInterface
    public function __construct(KernelInterface $kernel)
    {
        parent::__construct($kernel);
        // add to registry
        $this->getContainer()->set('url', $this);
        // fetch the request object from the container
        $this->request = $this->get('request');
        $this->processQueryString();
    }