Example #1
0
 /**
  * Get control method name basing on current route
  *
  * @return string
  */
 protected function getControlMethod()
 {
     $method = lcfirst($this->route->getAction()) . 'Action';
     return $method;
 }