getBody(); return 'handling requested data'; } public function contact(){ return $this->render('contact'); } public function home(){ $params = [ 'name' => "TheCodeholic" ]; return $this->render('home', $params); } public function profile(){ return $this->render('profile'); } public function _404(){ return $this->render('_404'); } }