silverstripe-framework/filesystem/flysystem/ProtectedAdapter.php
2016-03-09 10:20:31 +13:00

20 lines
387 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);
}