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

pStmt_Switch() 보호된 메소드

protected pStmt_Switch ( PhpParser\Node\Stmt\Switch_ $node )
$node PhpParser\Node\Stmt\Switch_
    protected function pStmt_Switch(Stmt\Switch_ $node) {
        return 'switch (' . $this->p($node->cond) . ') {'
             . $this->pStmts($node->cases) . "\n" . '}';
    }
Standard