]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding PHPDoc
authorThomas Müller <thomas.mueller@tmit.eu>
Thu, 5 Jun 2014 18:03:32 +0000 (20:03 +0200)
committerRobin Appelman <icewind@owncloud.com>
Mon, 9 Jun 2014 10:34:35 +0000 (12:34 +0200)
apps/files_sharing/tests/permissions.php

index 0a222b08512253d0bbb49d7517ac79157266ac96..bff7109518581fdd38969679a7b96e09af0ca507 100644 (file)
  * 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();