Passed
Branch master (f937f1)
by Burak
05:52
created

RouteServiceProvider   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 71
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 13
c 1
b 0
f 0
dl 0
loc 71
ccs 17
cts 17
cp 1
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 5 1
A mapWebRoutes() 0 5 1
A map() 0 5 1
A mapApiRoutes() 0 6 1
1
<?php
2
3
namespace App\Providers;
4
5
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
6
use Illuminate\Support\Facades\Route;
7
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 = '/dashboard';
25
26
    /**
27
     * Define your route model bindings, pattern filters, etc.
28
     *
29
     * @return void
30
     */
31 18
    public function boot()
32
    {
33
        //
34
35 18
        parent::boot();
36 18
    }
37
38
    /**
39
     * Define the routes for the application.
40
     *
41
     * @return void
42
     */
43 18
    public function map()
44
    {
45 18
        $this->mapApiRoutes();
46
47 18
        $this->mapWebRoutes();
48
49
        //
50 18
    }
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 18
    protected function mapWebRoutes()
60
    {
61 18
        Route::middleware('web')
62 18
            ->namespace($this->namespace)
63 18
            ->group(base_path('routes/web.php'));
64 18
    }
65
66
    /**
67
     * Define the "api" routes for the application.
68
     *
69
     * These routes are typically stateless.
70
     *
71
     * @return void
72
     */
73 18
    protected function mapApiRoutes()
74
    {
75 18
        Route::prefix('api')
76 18
            ->middleware('api')
77 18
            ->namespace($this->namespace)
78 18
            ->group(base_path('routes/api.php'));
79 18
    }
80
}
81