From aa38bd2b311a2f702cd1cbb425daed5f3b1555af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 5 Jun 2014 20:03:32 +0200 Subject: [PATCH] adding PHPDoc --- apps/files_sharing/tests/permissions.php | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php index 0a222b08512..bff71095185 100644 --- a/apps/files_sharing/tests/permissions.php +++ b/apps/files_sharing/tests/permissions.php @@ -19,13 +19,49 @@ * License along with this library. If not, see . * */ +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();