Neos\Flow\Property\TypeConverter\FloatConverter::getConfigurationKeysAndValues PHP Метод

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

Helper method to collect configuration for this class.
protected getConfigurationKeysAndValues ( Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration, array $configurationKeys ) : array
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface
$configurationKeys array
Результат array
    protected function getConfigurationKeysAndValues(PropertyMappingConfigurationInterface $configuration, array $configurationKeys)
    {
        $keysAndValues = [];
        foreach ($configurationKeys as $configurationKey) {
            $keysAndValues[$configurationKey] = $configuration->getConfigurationValue(FloatConverter::class, $configurationKey);
        }
        return $keysAndValues;
    }