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 BackupManagerServiceProvider 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/backupmanager.php'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Perform post-registration booting of services. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function boot() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Define the routes for the application. |
||
| 56 | * |
||
| 57 | * @param \Illuminate\Routing\Router $router |
||
| 58 | * |
||
| 59 | * @return void |
||
| 60 | */ |
||
| 61 | public function setupRoutes(Router $router) |
||
| 73 | |||
| 74 | /** |
||
| 75 | * Register any package services. |
||
| 76 | * |
||
| 77 | * @return void |
||
| 78 | */ |
||
| 79 | public function register() |
||
| 88 | } |
||
| 89 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.