Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ConfirmablePasswordController extends Controller |
||
12 | { |
||
13 | /** |
||
14 | * Show the confirm password view. |
||
15 | * |
||
16 | * @return \Illuminate\View\View |
||
17 | */ |
||
18 | 1 | public function show() |
|
21 | } |
||
22 | |||
23 | /** |
||
24 | * Confirm the user's password. |
||
25 | * |
||
26 | * @param \Illuminate\Http\Request $request |
||
27 | * @return mixed |
||
28 | */ |
||
29 | 2 | public function store(Request $request) |
|
45 |