Completed
Push — master ( ac5177...5f9f92 )
by ARCANEDEV
10s
created

CommandsServiceProvider::provides()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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