PhpParser\PrettyPrinter\Standard::pStmt_Declare PHP Method

pStmt_Declare() protected method

protected pStmt_Declare ( Declare_ $node )
$node PhpParser\Node\Stmt\Declare_
    protected function pStmt_Declare(Stmt\Declare_ $node) {
        return 'declare (' . $this->pCommaSeparated($node->declares) . ')'
             . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . "\n" . '}' : ';');
    }
Standard