Removing verbs

This commit is contained in:
Dennis Eichhorn 2015-12-20 22:26:24 +01:00
parent 8c95184780
commit fdef759d37

View File

@ -132,6 +132,12 @@ class Request extends RequestAbstract
$this->uri->set($uri['uri']); $this->uri->set($uri['uri']);
} }
unset($_FILES);
unset($_GET);
unset($_POST);
unset($_PUT);
unset($_HEAD);
$this->path = explode('/', $this->uri->getPath()); $this->path = explode('/', $this->uri->getPath());
$this->l11n->setLanguage($this->path[0]); $this->l11n->setLanguage($this->path[0]);
$this->hash = []; $this->hash = [];