getRequestUri(), $match); if (isset($match[2])) { $class_name = $this->namespace.'\\controllers\\' . ucfirst($match[2]) . 'Controller'; $action = $match[3]; return [$class_name,$action]; } else { throw new NotFoundException(); } } }