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.
Test Failed
Push — master ( 825fca...40a20f )
by Roelof Jan
04:11 queued 12s
created

MetaTagFacade   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
namespace AloiaCms\Facades;
4
5
use AloiaCms\Models\MetaTag;
6
use Illuminate\Support\Facades\Facade;
7
8
class MetaTagFacade extends Facade
9
{
10
11
    /**
12
     * Get the registered name of the component.
13
     *
14
     * @return string
15
     */
16
    protected static function getFacadeAccessor()
17
    {
18
        return MetaTag::class;
19
    }
20
}
21