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.

Genius   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 1 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: htinlynn
5
 * Date: 11/28/18
6
 * Time: 11:11 AM
7
 */
8
9
namespace Genius\Facades;
10
use Illuminate\Support\Facades\Facade;
11
use Genius\Contacts\GeniusInterface;
12
/**
13
 * Class     Genius Facade
14
 *
15
 * @package  Htinlynn\Genius\Facade
16
 * @author   HtinLynn <[email protected]>
17
 */
18
class Genius extends Facade
19
{
20
    /**
21
     * Get the registered name of the component.
22
     *
23
     * @return string
24
     */
25
    protected static function getFacadeAccessor() { return GeniusInterface::class; }
26
}
27