PDepend\Source\AST\AbstractASTType::addMethod PHP 메소드

addMethod() 공개 메소드

Adds the given method to this type.
public addMethod ( PDepend\Source\AST\ASTMethod $method ) : PDepend\Source\AST\ASTMethod
$method PDepend\Source\AST\ASTMethod
리턴 PDepend\Source\AST\ASTMethod
    public function addMethod(ASTMethod $method)
    {
        $method->setParent($this);
        $this->methods[] = $method;
        return $method;
    }