Spatie\MediaLibrary\Conversion\ConversionCollection::getQueuedConversions PHP Метод

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

* Get all the conversions in the collection that should be queued.
public getQueuedConversions ( string $collectionName = '' ) : ConversionCollection
$collectionName string
Результат ConversionCollection
    public function getQueuedConversions(string $collectionName = '') : ConversionCollection
    {
        return $this->getConversions($collectionName)->filter(function (Conversion $conversion) {
            return $conversion->shouldBeQueued();
        });
    }