Completed
Push — master ( 652e57...3ec9c1 )
by Max
03:33
created

AppServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 15
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 2 1
A boot() 0 2 1
1
<?php
2
3
namespace NFLScores\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class AppServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap any application services.
11
     */
12 23
    public function boot(): void
13
    {
14
        //
15 23
    }
16
17
    /**
18
     * Register any application services.
19
     */
20 23
    public function register(): void
21
    {
22
        //
23 23
    }
24
}
25