aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-06-05 20:03:32 +0200
committerRobin Appelman <icewind@owncloud.com>2014-06-09 12:34:35 +0200
commitaa38bd2b311a2f702cd1cbb425daed5f3b1555af (patch)
treed7b646267db2769b5e5d4f95fb92b7ee873aedfd
parent41d23541916096170de256b4d1eeb4a853afd0af (diff)
downloadnextcloud-server-aa38bd2b311a2f702cd1cbb425daed5f3b1555af.tar.gz
nextcloud-server-aa38bd2b311a2f702cd1cbb425daed5f3b1555af.zip
adding PHPDoc
-rw-r--r--apps/files_sharing/tests/permissions.php36
1 files changed, 36 insertions, 0 deletions
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 <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();