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: