Completed
Push — master ( 5b13ac...8f2e40 )
by wen
02:22
created

LaravelServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 3 1
1
<?php
2
3
4
namespace Sco\ActionLog;
5
6
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
7
use Sco\ActionLog\Events\ActionLogEvent;
8
use Sco\ActionLog\Listeners\SaveActionLog;
9
10
class LaravelServiceProvider extends ServiceProvider
11
{
12
    protected $listen = [
13
        ActionLogEvent::class => [
14
            SaveActionLog::class
15
        ]
16
    ];
17
18
    public function register()
19
    {
20
    }
21
}
22