Neos\Flow\Property\TypeConverter\AbstractTypeConverter::canConvertFrom PHP Method

canConvertFrom() public method

This implementation always returns TRUE for this method.
public canConvertFrom ( mixed $source, string $targetType ) : boolean
$source mixed the source data
$targetType string the type to convert to.
return boolean TRUE if this TypeConverter can convert from $source to $targetType, FALSE otherwise.
    public function canConvertFrom($source, $targetType)
    {
        return true;
    }