Completed
Push — AddActivityLog ( 907519...afa80e )
by D.
36:10 queued 26:07
created

AppServiceProvider::nullToEmptyString()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 2
eloc 2
nc 2
nop 2
1
<?php
2
3
namespace SET\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class AppServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap any application services.
11
     *
12
     * @return void
13
     */
14
    public function boot()
15
    {
16
        //
17
    }
18
19
    /**
20
     * Register any application services.
21
     *
22
     * @return void
23
     */
24
    public function register()
25
    {
26
        if ($this->app->environment() == 'local') {
27
            $this->app->register('Laracasts\Generators\GeneratorsServiceProvider');
28
        }
29
    }
30
}
31