We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 10 | class RouteServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * This namespace is applied to your controller routes. |
||
| 14 | * |
||
| 15 | * In addition, it is set as the URL generator's root namespace. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $namespace = 'GiveBlood\Units\Authentication\Http\Controllers'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Define your route model bindings, pattern filters, etc. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function boot() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Define the routes for the application. |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function map() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Define the "api" routes for the application. |
||
| 45 | * |
||
| 46 | * These routes are typically stateless. |
||
| 47 | * |
||
| 48 | * @return void |
||
| 49 | */ |
||
| 50 | protected function mapApiRoutes() |
||
| 60 | } |
||
| 61 |