Completed
Pull Request — master (#16)
by ARCANEDEV
10:31 queued 08:50
created

CommandServiceProvider::provides()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php namespace Arcanedev\LaravelLang\Providers;
2
3
use Arcanedev\LaravelLang\Commands;
4
use Arcanedev\Support\Providers\CommandServiceProvider as ServiceProvider;
5
6
/**
7
 * Class     CommandServiceProvider
8
 *
9
 * @package  Arcanedev\LaravelLang\Providers
10
 * @author   ARCANEDEV <[email protected]>
11
 */
12
class CommandServiceProvider extends ServiceProvider
13
{
14
    /* -----------------------------------------------------------------
15
     |  Properties
16
     | -----------------------------------------------------------------
17
     */
18
19
    /**
20
     * The commands to be registered.
21
     *
22
     * @var array
23
     */
24
    protected $commands = [
25
        Commands\CheckCommand::class,
26
        Commands\PublishCommand::class,
27
    ];
28
}
29