getMethod() public method

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