mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
adding PHPDoc
This commit is contained in:
parent
41d2354191
commit
aa38bd2b31
1 changed files with 36 additions and 0 deletions
|
|
@ -19,13 +19,49 @@
|
|||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
use OC\Files\Cache\Cache;
|
||||
use OC\Files\Storage\Storage;
|
||||
use OC\Files\View;
|
||||
|
||||
require_once __DIR__ . '/base.php';
|
||||
|
||||
class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base {
|
||||
|
||||
/**
|
||||
* @var Storage
|
||||
*/
|
||||
private $sharedStorageRestrictedShare;
|
||||
|
||||
/**
|
||||
* @var Storage
|
||||
*/
|
||||
private $sharedCacheRestrictedShare;
|
||||
|
||||
/**
|
||||
* @var View
|
||||
*/
|
||||
private $secondView;
|
||||
|
||||
/**
|
||||
* @var Storage
|
||||
*/
|
||||
private $ownerStorage;
|
||||
|
||||
/**
|
||||
* @var Storage
|
||||
*/
|
||||
private $sharedStorage;
|
||||
|
||||
/**
|
||||
* @var Cache
|
||||
*/
|
||||
private $sharedCache;
|
||||
|
||||
/**
|
||||
* @var Cache
|
||||
*/
|
||||
private $ownerCache;
|
||||
|
||||
function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue