Command
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 0
cp 0
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
namespace Recca0120\Terminal\Console\Commands;
4
5
use Illuminate\Console\Command as BaseCommand;
6
use Recca0120\Terminal\Contracts\TerminalCommand;
7
8
class Command extends BaseCommand implements TerminalCommand
9
{
10
}
11