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.
Completed
Push — master ( bd76f9...bf3f88 )
by Tom
11:16 queued 11:15
created

EnumServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 2
dl 0
loc 11
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 8 1
1
<?php
2
3
namespace Spatie\Enum\Laravel;
4
5
use Illuminate\Support\ServiceProvider;
6
use Spatie\Enum\Laravel\Commands\MakeEnum;
7
8
class EnumServiceProvider extends ServiceProvider
9
{
10 132
    public function register()
11
    {
12 132
        $this->app->bind('command.make:enum', MakeEnum::class);
13
14 132
        $this->commands([
15 132
            'command.make:enum',
16
        ]);
17 132
    }
18
}
19