TestsGeneratorCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 2
b 0
f 0
dl 0
loc 17
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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