silverstripe-framework/filesystem/flysystem/ProtectedAdapter.php
2016-01-13 18:18:22 +13:00

19 lines
386 B
PHP

<?php
namespace SilverStripe\Filesystem\Flysystem;
use League\Flysystem\AdapterInterface;
/**
* An adapter which does not publicly expose protected files
*/
interface ProtectedAdapter extends AdapterInterface {
/**
* Provide downloadable url that is restricted to granted users
*
* @param string $path
* @return string|null
*/
public function getProtectedUrl($path);
}