Skip to content

Commit f9d35fe

Browse files
committed
Fix casing of class name
1 parent 8bcaa42 commit f9d35fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/PhpParser/PrettyPrinter/Standard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ protected function pExpr_MethodCall(Expr\MethodCall $node) {
497497
. '(' . $this->pMaybeMultiline($node->args) . ')';
498498
}
499499

500-
protected function pExpr_NullsafeMethodCall(Expr\NUllsafeMethodCall $node) {
500+
protected function pExpr_NullsafeMethodCall(Expr\NullsafeMethodCall $node) {
501501
return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name)
502502
. '(' . $this->pMaybeMultiline($node->args) . ')';
503503
}

0 commit comments

Comments
 (0)