Neos\Flow\Property\TypeConverter\AbstractTypeConverter::getTargetTypeForSource PHP Метод

getTargetTypeForSource() публичный Метод

Returns the $originalTargetType unchanged in this implementation.
public getTargetTypeForSource ( mixed $source, string $originalTargetType, Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration = null ) : string
$source mixed the source data
$originalTargetType string the type we originally want to convert to
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface
Результат string
    public function getTargetTypeForSource($source, $originalTargetType, PropertyMappingConfigurationInterface $configuration = null)
    {
        return $originalTargetType;
    }