private function extractController() { $mvcParts = explode('/', $this->requestUri); $this->controller = $mvcParts[1]; $this->action = $mvcParts[2]; $this->params = REST::getParameters(); }