Passed
Push — feature/second-release ( 6a86fe...3a565d )
by Andrea Marco
02:34
created

LaravelEnumServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 2 1
A register() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Cerbero\LaravelEnum\Providers;
6
7
use Illuminate\Support\ServiceProvider;
8
9
/**
10
 * The package service provider.
11
 */
12
final class LaravelEnumServiceProvider extends ServiceProvider
13
{
14
    /**
15
     * Bootstrap the package services.
16
     */
17 4
    public function boot(): void
18
    {
19
        //
20 4
    }
21
22
    /**
23
     * Register the package services.
24
     */
25 4
    public function register(): void
26
    {
27
        //
28 4
    }
29
}
30