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

pExpr_ArrayDimFetch() 보호된 메소드

protected pExpr_ArrayDimFetch ( PhpParser\Node\Expr\ArrayDimFetch $node )
$node PhpParser\Node\Expr\ArrayDimFetch
    protected function pExpr_ArrayDimFetch(Expr\ArrayDimFetch $node) {
        return $this->pDereferenceLhs($node->var)
             . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']';
    }
Standard