Neos\Media\TypeConverter\ImageInterfaceArrayPresenter::canConvertFrom PHP 메소드

canConvertFrom() 공개 메소드

If $source has an identity, we have a persisted Image, and therefore this type converter should withdraw and let the PersistedObjectConverter kick in.
public canConvertFrom ( mixed $source, string $targetType ) : boolean
$source mixed The source for the to-build Image
$targetType string Should always be 'string'
리턴 boolean
    public function canConvertFrom($source, $targetType)
    {
        return true;
    }