Completed
Push — master ( 3260ca...0c0ec5 )
by Christian
02:12
created

DummyCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace N98\Magento\Command;
4
5
/**
6
 * Class DummyCommand
7
 * @package N98\Magento\Command
8
 */
9
class DummyCommand extends AbstractMagentoCommand
10
{
11
    protected function configure()
12
    {
13
        $this->setName('dummy');
14
    }
15
}
16