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

LaravelServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
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