Exemplo n.º 1
0
 public function getMethods()
 {
     $methods = parent::getMethods();
     foreach ($this->getStrategy()->getMethods() as $method) {
         if (substr($method, 0, 7) == '_before' || substr($method, 0, 6) == '_after') {
             $methods[] = $method;
         }
     }
     return $methods;
 }