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.

ContentsController::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Http\Controllers\Tabbar\Navigation\Contents;
4
5
use App\Http\Controllers\Controller;
6
7
/**
8
 * ContentsController.
9
 * 
10
 * contentsタブ内で表示するコンテンツを扱う
11
 */
12
class ContentsController extends Controller
13
{
14
    /**
15
     * Create a new contents controller instance.
16
     */
17
    public function __construct()
18
    {
19
    }
20
21
    /**
22
     * topアクション.
23
     *
24
     * @return view contents/contents_topテンプレート
25
     */
26
    public function topAction()
27
    {
28
        return view('tabbar/navigation/contents/contents_top');
29
    }
30
31
    /**
32
     * chatアクション.
33
     *
34
     * @return view contents/contents_topテンプレート
35
     */
36
    public function chatAction()
37
    {
38
        return view('tabbar/navigation/contents/contents_chat');
39
    }
40
}
41