HBLL-Collection-Development/omeka-s-any-cloud

View on GitHub
src/File/Store/Dropbox.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AnyCloud\File\Store;

class Dropbox extends Flysystem
{
    public function getUri($storagePath)
    {
        return $this->filesystem->temporaryUrl($storagePath);
    }
}