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.
Passed
Branch master (5b855c)
by O2System
02:18
created

Middleware   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
/**
3
 * This file is part of the O2System PHP Framework package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 *
8
 * @author         Steeve Andrian Salim
9
 * @copyright      Copyright (c) Steeve Andrian Salim
10
 */
11
// ------------------------------------------------------------------------
12
13
namespace App\Http;
14
15
// ------------------------------------------------------------------------
16
17
use O2System\Framework\Http;
18
use App\Http\Middleware;
19
20
/**
21
 * Class Middleware
22
 *
23
 * @package App\Http
24
 */
25
class Middleware extends Http\Middleware
26
{
27
    public function __construct()
28
    {
29
        parent::__construct();
30
31
        $this->register( new Middleware\WebToken(), 'webToken' );
32
        $this->register( new Middleware\JsonWebToken(), 'jsonWebToken' );
33
    }
34
}