Passed
Push — feature/lg ( b2e7fb...c4aecf )
by Richard
03:47
created

APIGeneratorCommand::getOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 1
c 2
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace PWWEB\Artomator\Commands\API;
4
5
use InfyOm\Generator\Commands\API\APIGeneratorCommand as Base;
6
use PWWEB\Artomator\Common\CommandData;
7
8
class APIGeneratorCommand extends Base
9
{
10
    /**
11
     * The console command name.
12
     *
13
     * @var string
14
     */
15
    protected $name = 'artomator:api';
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