PHPParser_PrettyPrinter_Zend::pStmt_Trait PHP Method

pStmt_Trait() public method

public pStmt_Trait ( PHPParser_Node_Stmt_Trait $node )
$node PHPParser_Node_Stmt_Trait
    public function pStmt_Trait(PHPParser_Node_Stmt_Trait $node)
    {
        return 'trait ' . $node->name . "\n" . '{' . "\n" . $this->pStmts($node->stmts) . "\n" . '}';
    }
PHPParser_PrettyPrinter_Zend