Completed
Push — master ( dfad4d...8cf454 )
by Philip
21:24
created

ConfigChangeCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
4
namespace Dontdrinkandroot\Gitki\WebBundle\Command;
5
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
9
class ConfigChangeCommand extends AbstractConfigCommand
10
{
11
    /**
12
     * @var array
13
     */
14
    protected $gitkiConfig;
15
16
    protected function configure()
17
    {
18
        $this
19
            ->setName('gitki:config:change')
20
            ->setDescription('Change the configuration');
21
    }
22
23
    protected function execute(InputInterface $input, OutputInterface $output)
24
    {
25
    }
26
}
27