Total Complexity | 4 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class RouteRegistrar |
||
8 | { |
||
9 | /** |
||
10 | * The router implementation. |
||
11 | * |
||
12 | * @var \Illuminate\Contracts\Routing\Registrar |
||
13 | */ |
||
14 | protected $router; |
||
15 | |||
16 | public function __construct(Router $router) |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Apply all routes to the router. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function all() |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Apply authentication routes to the router. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function forAuthentication() |
||
48 | }); |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * Apply password reset routes to the router. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | public function forPasswordReset() |
||
65 |