MockCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
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
namespace GuillermoandraeTest\Mock;
4
5
use Guillermoandrae\Commands\AbstractCommand;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
class MockCommand extends AbstractCommand
10
{
11
    public function execute(InputInterface $input, OutputInterface $output)
12
    {
13
        $this->fail($output, 'stuff broke');
14
    }
15
}
16