Platformsh\Cli\Command\Project\ProjectCreateCommand::getFields PHP Метод

getFields() защищенный Метод

Returns a list of ConsoleForm form fields for this command.
protected getFields ( ) : Platformsh\ConsoleForm\Field\Field[]
Результат Platformsh\ConsoleForm\Field\Field[]
    protected function getFields()
    {
        return ['title' => new Field('Project title', ['optionName' => 'title', 'description' => 'The initial project title', 'default' => 'Untitled Project']), 'region' => new OptionsField('Region', ['optionName' => 'region', 'description' => 'The region where the project will be hosted', 'options' => Subscription::$availableRegions]), 'plan' => new OptionsField('Plan', ['optionName' => 'plan', 'description' => 'The subscription plan', 'options' => $this->getAvailablePlans(), 'default' => 'development']), 'environments' => new Field('Environments', ['optionName' => 'environments', 'description' => 'The number of environments', 'default' => 3, 'validator' => function ($value) {
            return is_numeric($value) && $value > 0 && $value < 50;
        }]), 'storage' => new Field('Storage', ['description' => 'The amount of storage per environment, in GiB', 'default' => 5, 'validator' => function ($value) {
            return is_numeric($value) && $value > 0 && $value < 1024;
        }])];
    }