getMethod() public method

public getMethod ( )
Exemplo n.º 1
0
 private function _getRuleMethod(RouteRule $rule)
 {
     if (!$rule->isActionRequired()) {
         return 'ALL';
     }
     return is_array($rule->getMethod()) ? 'ANY' : $rule->getMethod();
 }