Completed
Push — master ( a8824e...5b13ac )
by wen
03:16
created

LaravelServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 3 1
A register() 0 3 1
1
<?php
2
3
4
namespace Sco\ActionLog;
5
6
use Illuminate\Support\ServiceProvider;
7
8
class LaravelServiceProvider extends ServiceProvider
9
{
10
    public function boot()
11
    {
12
    }
13
14
    public function register()
15
    {
16
    }
17
}
18