Completed
Push — master ( 1475fb...4d64c5 )
by Sergi Tur
01:37
created

UsersController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 5 1
1
<?php
2
3
namespace Acacha\Users\Http\Controllers;
4
5
use Response;
6
7
/**
8
 * Class UsersController
9
 *
10
 * @package Acacha\Users\Http\Controllers
11
 */
12
class UsersController extends Controller
13
{
14
    /**
15
     * Show the application dashboard.
16
     *
17
     * @return Response
18
     */
19
    public function index()
20
    {
21
        $this->authorize('see-manage-users-view');
22
        return view('acacha_users::management');
23
    }
24
25
}