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.

Gjk   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * This file is part of the mucts.com.
4
 *
5
 * This source file is subject to the MIT license that is bundled
6
 * with this source code in the file LICENSE.
7
 *
8
 * @version 1.0
9
 * @author herry<[email protected]>
10
 * @copyright © 2020 MuCTS.com All Rights Reserved.
11
 */
12
13
namespace MuCTS\Laravel\GuiJK\Facades;
14
15
16
use Illuminate\Support\Facades\Facade;
17
use MuCTS\Laravel\GuiJK\Config\Config;
18
19
/**
20
 * Class Gik
21
 *
22
 * @method static null|array request(string $route, array $param = [], $timeOut = 15)
23
 * @method static \MuCTS\Laravel\GuiJK\Gjk setConfig(Config $config)
24
 * @package MuCTS\Laravel\GuiJK\Facades
25
 */
26
class Gjk extends Facade
27
{
28
    protected static function getFacadeAccessor()
29
    {
30
        return 'gjk';
31
    }
32
}