Neos\Media\TypeConverter\ArrayConverter::getTypeOfChildProperty PHP Method

getTypeOfChildProperty() public method

Return the type of a given sub-property inside the $targetType, in this case always "array"
public getTypeOfChildProperty ( string $targetType, string $propertyName, Neos\Flow\Property\PropertyMappingConfigurationInterface $configuration ) : string
$targetType string is ignored
$propertyName string is ignored
$configuration Neos\Flow\Property\PropertyMappingConfigurationInterface is ignored
return string always "array"
    public function getTypeOfChildProperty($targetType, $propertyName, PropertyMappingConfigurationInterface $configuration)
    {
        return 'array';
    }