Find a Rector rule

Find the best Rector rule to solve your problem. Searching through 1109 rules.

Found 1 rule. That's the one: Clear

laravel/framework 8 1 match

Add parent::register(); call to register() class method in child of Illuminate\Foundation\Support\Providers\EventServiceProvider

 use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;

 class EventServiceProvider extends ServiceProvider
 {
     public function register()
     {
+        parent::register();
     }
 }