PhpBench\Registry\ConfigurableRegistry::processRawCliConfig PHP Метод

processRawCliConfig() приватный Метод

{"generator": "table", "sort": ["time"]} Or simply the name of a pre-configured configuration to use: table
private processRawCliConfig ( $rawConfig ) : array
Результат array
    private function processRawCliConfig($rawConfig)
    {
        if (preg_match(Config::NAME_REGEX, $rawConfig)) {
            return $rawConfig;
        }
        $config = $this->jsonDecoder->decode($rawConfig);
        $configName = uniqid();
        $this->setConfig($configName, $config);
        return $configName;
    }