PhpParser\PrettyPrinter\Standard::pExpr_ArrayDimFetch PHP Method

pExpr_ArrayDimFetch() protected method

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