PhpParser\PrettyPrinter\Standard::pStmt_Case PHP Method

pStmt_Case() protected method

protected pStmt_Case ( PhpParser\Node\Stmt\Case_ $node )
$node PhpParser\Node\Stmt\Case_
    protected function pStmt_Case(Stmt\Case_ $node) {
        return (null !== $node->cond ? 'case ' . $this->p($node->cond) : 'default') . ':'
             . $this->pStmts($node->stmts);
    }
Standard