Total Complexity | 3 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Coverage | 92.31% |
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 = '/home'; |
||
21 | |||
22 | /** |
||
23 | * {@inheritDoc} |
||
24 | * |
||
25 | * When present, controller route declarations will automatically be prefixed with this namespace. |
||
26 | */ |
||
27 | // protected $namespace = 'App\\Http\\Controllers'; |
||
28 | |||
29 | /** |
||
30 | * Define your route model bindings, pattern filters, etc. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | 1 | public function boot() |
|
47 | }); |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * Configure the rate limiters for the application. |
||
52 | * |
||
53 | * @return void |
||
54 | */ |
||
55 | 1 | protected function configureRateLimiting() |
|
62 |