PhpParser\PrettyPrinter\Standard::pStmt_Interface PHP Method

pStmt_Interface() protected method

protected pStmt_Interface ( Interface_ $node )
$node PhpParser\Node\Stmt\Interface_
    protected function pStmt_Interface(Stmt\Interface_ $node) {
        return 'interface ' . $node->name
             . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '')
             . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
    }
Standard