InfyOm\Generator\Common\CommandData::__construct PHP Method

__construct() public method

public __construct ( Illuminate\Console\Command $commandObj, string $commandType ) : CommandData
$commandObj Illuminate\Console\Command
$commandType string
return CommandData
    public function __construct(Command $commandObj, $commandType)
    {
        $this->commandObj = $commandObj;
        $this->commandType = $commandType;
        $this->fieldNamesMapping = ['$FIELD_NAME_TITLE$' => 'fieldTitle', '$FIELD_NAME$' => 'fieldName'];
        $this->config = new GeneratorConfig();
    }