Passed
Push — feature/second-release ( 6a86fe )
by Andrea Marco
13:08
created

LaravelEnumServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

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
    public function boot(): void
18
    {
19
        //
20
    }
21
22
    /**
23
     * Register the package services.
24
     */
25
    public function register(): void
26
    {
27
        //
28
    }
29
}
30