InfyOm\Generator\Common\CommandData::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( Illuminate\Console\Command $commandObj, string $commandType ) : CommandData
$commandObj Illuminate\Console\Command
$commandType string
리턴 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();
    }