Passed
Push — master ( 2ee0d8...7d70f7 )
by SignpostMarv
03:18
created

Command   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 3 1
1
<?php
2
/**
3
* @author SignpostMarv
4
*/
5
declare(strict_types=1);
6
7
namespace SignpostMarv\DaftFramework\Symfony\Console\Command;
8
9
use BadMethodCallException;
10
use SignpostMarv\DaftFramework\AttachDaftFramework;
11
use Symfony\Component\Console\Command\Command as Base;
12
use Symfony\Component\Console\Input\InputInterface;
13
use Symfony\Component\Console\Output\OutputInterface;
14
15
abstract class Command extends Base
16
{
17
    use AttachDaftFramework;
18
19
    public function execute(InputInterface $input, OutputInterface $output) : int
20
    {
21
        throw new BadMethodCallException('command body not implemented!');
22
    }
23
}
24