Completed
Push — master ( a59201...500503 )
by Fumio
03:51
created

AddonListCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 12
ccs 4
cts 4
cp 1
rs 10
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 1
    public function __construct()
13
    {
14 1
        $this->description = '[+] '.$this->description;
15
16 1
        parent::__construct();
17 1
    }
18
}
19