PhpParser\PrettyPrinter\Standard::pStmt_While PHP 메소드

pStmt_While() 보호된 메소드

protected pStmt_While ( PhpParser\Node\Stmt\While_ $node )
$node PhpParser\Node\Stmt\While_
    protected function pStmt_While(Stmt\While_ $node) {
        return 'while (' . $this->p($node->cond) . ') {'
             . $this->pStmts($node->stmts) . "\n" . '}';
    }
Standard