EventServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 4 1
1
<?php
2
3
namespace Hechoenlaravel\JarvisFoundation\Providers;
4
5
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
6
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
7
8
class EventServiceProvider extends ServiceProvider
9
{
10
    /**
11
     * The event listener mappings for the application.
12
     *
13
     * @var array
14
     */
15
    protected $listen = [
16
        'Hechoenlaravel\JarvisFoundation\EntityGenerator\Events\EntityWasCreated' => [
17
            'Hechoenlaravel\JarvisFoundation\EntityGenerator\Listeners\CreateTableInDatabase'
18
        ],
19
        'Hechoenlaravel\JarvisFoundation\FieldGenerator\Events\FieldWasCreated' => [
20
            'Hechoenlaravel\JarvisFoundation\FieldGenerator\Listeners\CreateColumnInDatabase'
21
        ],
22
        'Hechoenlaravel\JarvisFoundation\FieldGenerator\Events\FieldWasEdited' => [
23
            'Hechoenlaravel\JarvisFoundation\FieldGenerator\Listeners\RenameColumn'
24
        ],
25
        'Hechoenlaravel\JarvisFoundation\FieldGenerator\Events\FieldWasDeleted' => [
26
            'Hechoenlaravel\JarvisFoundation\FieldGenerator\Listeners\DeleteColumn'
27
        ]
28
    ];
29
30
    /**
31
     * Register any other events for your application.
32
     *
33
     * @return void
34
     */
35
    public function boot()
36
    {
37
        parent::boot();
38
    }
39
}
40