Completed
Push — master ( 055479...9c7742 )
by Fumio
14:33
created

AddonListCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 12
rs 10
ccs 0
cts 4
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
namespace LaravelPlus\Extension\Addons\Console;
4
5
use Jumilla\Addomnipot\Laravel\Console\AddonListCommand as BaseCommand;
6
7
class AddonListCommand extends BaseCommand
8
{
9
    /**
10
     * Create a new console command instance.
11
     */
12
    public function __construct()
13
    {
14
        $this->description = '[+] '.$this->description;
15
16
        parent::__construct();
17
    }
18
}
19