Passed
Push — master ( 146be5...1e12ef )
by ANTHONIUS
06:12
created

MergeCoverageCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 4
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 2 1
1
<?php
2
3
namespace Doyo\Bridge\CodeCoverage\Console;
4
5
6
use Symfony\Component\Console\Command\Command;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Output\OutputInterface;
9
10
class MergeCoverageCommand extends Command
11
{
12
    public function execute(InputInterface $input, OutputInterface $output)
13
    {
14
15
    }
16
}
17