
no_useless_nullsafe_operator
¶There should not be useless null-safe-operators
?->
used.
--- Original
+++ New
<?php
class Foo extends Bar
{
public function test() {
- echo $this?->parentMethod();
+ echo $this->parentMethod();
}
}
The rule is part of the following rule sets:
Using the @PhpCsFixer rule set will enable the no_useless_nullsafe_operator
rule.
Using the @Symfony rule set will enable the no_useless_nullsafe_operator
rule.