GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

DevController   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A topAction() 0 4 1
1
<?php
2
3
namespace App\Http\Controllers\Tabbar\Navigation\Dev;
4
5
use App\Http\Controllers\Controller;
6
7
/**
8
 * DevController.
9
 * 
10
 * Devタブ内で表示するコンテンツを扱う
11
 */
12
class DevController extends Controller
13
{
14
    /**
15
     * Create a new dev controller instance.
16
     */
17
    public function __construct()
18
    {
19
    }
20
21
    /**
22
     * topアクション.
23
     *
24
     * @return view dev/dev_topテンプレート
25
     */
26
    public function topAction()
27
    {
28
        return view('tabbar/navigation/dev/dev_top');
29
    }
30
}
31