PDepend\Metrics\Analyzer\DependencyAnalyzer::visitInterface PHP Method

visitInterface() public method

Visits an interface node.
public visitInterface ( PDepend\Source\AST\ASTInterface $interface ) : void
$interface PDepend\Source\AST\ASTInterface
return void
    public function visitInterface(ASTInterface $interface)
    {
        $this->fireStartInterface($interface);
        $this->visitType($interface);
        $this->fireEndInterface($interface);
    }