Skip to content
Snippets Groups Projects
Commit aa38bd2b authored by Thomas Müller's avatar Thomas Müller Committed by Robin Appelman
Browse files

adding PHPDoc

parent 41d23541
No related branches found
No related tags found
No related merge requests found
...@@ -19,13 +19,49 @@ ...@@ -19,13 +19,49 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>. * 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'; require_once __DIR__ . '/base.php';
class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base {
/**
* @var Storage
*/
private $sharedStorageRestrictedShare; private $sharedStorageRestrictedShare;
/**
* @var Storage
*/
private $sharedCacheRestrictedShare; private $sharedCacheRestrictedShare;
/**
* @var View
*/
private $secondView;
/**
* @var Storage
*/
private $ownerStorage;
/**
* @var Storage
*/
private $sharedStorage;
/**
* @var Cache
*/
private $sharedCache;
/**
* @var Cache
*/
private $ownerCache;
function setUp() { function setUp() {
parent::setUp(); parent::setUp();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment