Completed
Push — master ( 279d4e...5d09e0 )
by Elf
02:49
created

ConsoleServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 21
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 8 1
1
<?php
2
3
namespace ElfSundae\Laravel\Support\Providers;
4
5
use ElfSundae\Laravel\Support\Console\Commands;
6
use Illuminate\Support\ServiceProvider;
7
8
class ConsoleServiceProvider extends ServiceProvider
9
{
10
    /**
11
     * Indicates if loading of the provider is deferred.
12
     *
13
     * @var bool
14
     */
15
    protected $defer = true;
16
17
    /**
18
     * Register the service provider.
19
     */
20
    public function register()
21
    {
22
        $this->commands([
23
            Commands\AssetsVersion::class,
24
            Commands\IdeHelperGenerator::class,
25
            Commands\Int2stringCharacters::class,
26
        ]);
27
    }
28
}
29