Ejemplo n.º 1
0
 /**
  * Visits the given method.
  *
  * @param  \PDepend\Source\AST\ASTMethod $method
  * @return void
  */
 public function visitMethod(ASTMethod $method)
 {
     if ($method->isAbstract() === false) {
         $this->visitCallable($method);
     }
 }