Dietcube\Dispatcher::bootGlobals PHP Method

bootGlobals() protected method

protected bootGlobals ( )
    protected function bootGlobals()
    {
        $this->container['global.server'] = new Parameters($_SERVER);
        $this->container['global.get'] = new Parameters($_GET);
        $this->container['global.post'] = new Parameters($_POST);
        $this->container['global.files'] = new Parameters($_FILES);
        $this->container['global.cookie'] = new Parameters($_COOKIE);
    }