PHPParser_PrettyPrinter_Zend::pStmt_PropertyDeclarations PHP Method

pStmt_PropertyDeclarations() public method

public pStmt_PropertyDeclarations ( PHPParser_Node_Stmt_PropertyDeclarations $node )
$node PHPParser_Node_Stmt_PropertyDeclarations
    public function pStmt_PropertyDeclarations(PHPParser_Node_Stmt_PropertyDeclarations $node)
    {
        $modifiers = $this->pModifiers($node->modifier);
        $result = "";
        foreach ($node->stmts as $stmt) {
            $result .= $modifiers . $this->pCommaSeparated($stmt) . ";\n";
        }
        $result = rtrim($result, "\n");
        return $result;
    }
PHPParser_PrettyPrinter_Zend