We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | class MenuCRUDServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Indicates if loading of the provider is deferred. |
||
| 12 | * |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $defer = false; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Where the route file lives, both inside the package and in the app (if overwritten). |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $routeFilePath = '/routes/backpack/menucrud.php'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Perform post-registration booting of services. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function boot() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Define the routes for the application. |
||
| 37 | * |
||
| 38 | * @param \Illuminate\Routing\Router $router |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | public function setupRoutes(Router $router) |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Register any package services. |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | public function register() |
||
| 63 | } |
||
| 64 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.