Neos\Flow\Configuration\ConfigurationManager::resolveConfigurationProcessingType PHP Method

resolveConfigurationProcessingType() public method

This returns the CONFIGURATION_PROCESSING_TYPE_* to use for the given $configurationType.
public resolveConfigurationProcessingType ( string $configurationType ) : string
$configurationType string
return string
    public function resolveConfigurationProcessingType($configurationType)
    {
        if (!isset($this->configurationTypes[$configurationType])) {
            throw new Exception\InvalidConfigurationTypeException('Configuration type "' . $configurationType . '" is not registered. You can Register it by calling $configurationManager->registerConfigurationType($configurationType).', 1339166495);
        }
        return $this->configurationTypes[$configurationType]['processingType'];
    }