Fix casing of class name

This commit is contained in:
Nikita Popov 2020-08-10 11:21:16 +02:00
parent 8bcaa4261e
commit f9d35fe11e

View File

@ -497,7 +497,7 @@ class Standard extends PrettyPrinterAbstract
. '(' . $this->pMaybeMultiline($node->args) . ')';
}
protected function pExpr_NullsafeMethodCall(Expr\NUllsafeMethodCall $node) {
protected function pExpr_NullsafeMethodCall(Expr\NullsafeMethodCall $node) {
return $this->pDereferenceLhs($node->var) . '?->' . $this->pObjectProperty($node->name)
. '(' . $this->pMaybeMultiline($node->args) . ')';
}