We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php  | 
            ||
| 14 | View Code Duplication | class CampaignServiceProvider extends ServiceProvider  | 
            |
| 15 | { | 
            ||
| 16 | use LaravelMigrator;  | 
            ||
| 17 | |||
| 18 | public function register()  | 
            ||
| 24 | |||
| 25 | public function registerMigrations()  | 
            ||
| 34 | |||
| 35 | public function registerFactories()  | 
            ||
| 39 | |||
| 40 | public function registerSeeders()  | 
            ||
| 48 | }  | 
            ||
| 49 |