| Total Complexity | 3 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Coverage | 93.33% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class RouteServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * The path to the "home" route for your application. |
||
| 15 | * |
||
| 16 | * This is used by Laravel authentication to redirect users after login. |
||
| 17 | * |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | public const HOME = '/dashboard'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritDoc} |
||
| 24 | */ |
||
| 25 | // protected $namespace = 'App\\Http\\Controllers'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Define your route model bindings, pattern filters, etc. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | 12 | public function boot() |
|
| 45 | 12 | }); |
|
| 46 | 12 | } |
|
| 47 | |||
| 48 | /** |
||
| 49 | * Configure the rate limiters for the application. |
||
| 50 | * |
||
| 51 | * @return void |
||
| 52 | */ |
||
| 53 | 12 | protected function configureRateLimiting() |
|
| 60 |