request = $request; } /** * Automatically executed before the controller action. * * @param string request method * @return void */ public function before($method) { // Nothing by default } /** * Automatically executed after the controller action. * * @param string request method * @return void */ public function after($method) { // Nothing by default } } // End Controller