TestsGeneratorCommand::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 2
c 2
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace PWWEB\Artomator\Commands\API;
4
5
use InfyOm\Generator\Commands\API\TestsGeneratorCommand as Base;
6
use PWWEB\Artomator\Common\CommandData;
7
8
class TestsGeneratorCommand extends Base
9
{
10
    /**
11
     * The console command name.
12
     *
13
     * @var string
14
     */
15
    protected $name = 'artomator.api:tests';
16
17
    /**
18
     * Create a new command instance.
19
     */
20
    public function __construct()
21
    {
22
        parent::__construct();
23
24
        $this->commandData = new CommandData($this, CommandData::$COMMAND_TYPE_API);
25
    }
26
}
27