mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
387 B
PHP
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);
|
|
}
|