Completed
Push — master ( 762076...30ea98 )
by Jake
02:27
created

AuthController   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 18
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A showLoginForm() 0 3 1
A postLoginForm() 0 3 1
A showRegisterForm() 0 3 1
A postRegisterForm() 0 3 1
1
<?php
2
3
namespace MeestorHok\Blue\Http\Controllers;
4
 
5
use Illuminate\Routing\Controller;
6
use Auth;
7
8
class AuthController extends Controller
9
{
10
    public function showLoginForm () {
11
        return view('Blue::auth.login');
12
    }
13
    
14
    public function postLoginForm () {
15
        return 'Posted!';
16
    }
17
    
18
    public function showRegisterForm () {
19
        return view('Blue::auth.register');
20
    }
21
    
22
    public function postRegisterForm () {
23
        return 'Posted!';
24
    }
25
}