We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 9 | class PageManagerServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Indicates if loading of the provider is deferred. |
||
| 13 | * |
||
| 14 | * @var bool |
||
| 15 | */ |
||
| 16 | protected $defer = false; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Indicates if loading of the provider is deferred. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $adminControllerClass = 'Backpack\PageManager\App\Http\Controllers\Admin\PageCrudController'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Perform post-registration booting of services. |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function boot() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Define the routes for the application. |
||
| 46 | * |
||
| 47 | * @param \Illuminate\Routing\Router $router |
||
| 48 | * @return void |
||
| 49 | */ |
||
| 50 | public function setupRoutes(Router $router) |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Register any package services. |
||
| 77 | * |
||
| 78 | * @return void |
||
| 79 | */ |
||
| 80 | public function register() |
||
| 84 | } |
||
| 85 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.