There should not be useless Null-safe operator ?->
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:
- Fixer class: PhpCsFixer\Fixer\Operator\NoUselessNullsafeOperatorFixer
- Test class: PhpCsFixer\Tests\Fixer\Operator\NoUselessNullsafeOperatorFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.