PHPParser_PrettyPrinter_Zend::pStmt_Interface PHP Method

pStmt_Interface() public method

public pStmt_Interface ( PHPParser_Node_Stmt_Interface $node )
$node PHPParser_Node_Stmt_Interface
    public function pStmt_Interface(PHPParser_Node_Stmt_Interface $node)
    {
        return 'interface ' . $node->name . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '') . "\n" . '{' . "\n" . $this->pStmts($node->stmts) . "\n" . '}';
    }
PHPParser_PrettyPrinter_Zend