Platformsh\Cli\Command\Project\ProjectCreateCommand::getAvailablePlans PHP Method

getAvailablePlans() protected method

The default list (from the API client) can be overridden by user config.
protected getAvailablePlans ( ) : string[]
return string[]
    protected function getAvailablePlans()
    {
        if (self::$config->has('experimental.available_plans')) {
            return self::$config->get('experimental.available_plans');
        }
        return Subscription::$availablePlans;
    }