| Total Complexity | 4 |
| Total Lines | 71 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class RouteServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * This namespace is applied to your controller routes. |
||
| 12 | * |
||
| 13 | * In addition, it is set as the URL generator's root namespace. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $namespace = 'App\Http\Controllers'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The path to the "home" route for your application. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public const HOME = '/home'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Define your route model bindings, pattern filters, etc. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function boot() |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Define the routes for the application. |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function map() |
||
| 44 | { |
||
| 45 | $this->mapApiRoutes(); |
||
| 46 | |||
| 47 | $this->mapWebRoutes(); |
||
| 48 | |||
| 49 | // |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Define the "web" routes for the application. |
||
| 54 | * |
||
| 55 | * These routes all receive session state, CSRF protection, etc. |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | protected function mapWebRoutes() |
||
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Define the "api" routes for the application. |
||
| 68 | * |
||
| 69 | * These routes are typically stateless. |
||
| 70 | * |
||
| 71 | * @return void |
||
| 72 | */ |
||
| 73 | protected function mapApiRoutes() |
||
| 81 |