Completed
Push — master ( 58d3fb...59de8c )
by Lexey
05:17
created

ActualizeCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 11
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A doExecute() 0 4 1
1
<?php
2
3
namespace LF\EnvDiff\Console\Command;
4
5
use LF\EnvDiff\Config;
6
use LF\EnvDiff\Processor;
7
8
class ActualizeCommand extends AbstractCommand
9
{
10
    /**
11
     * @param Processor $processor
12
     * @param Config    $config
13
     */
14 1
    protected function doExecute(Processor $processor, Config $config)
15
    {
16 1
        $processor->actualizeEnv($config);
17 1
    }
18
}
19