summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2016-07-05 22:45:05 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-07-08 12:35:16 +0200
commit8f84c99e3f4455867d588eaeba29603e44ab1c31 (patch)
tree4d3440fff876696adc22b0d7b7627d6907b0b0a7 /apps/files_external/lib
parenta84250e0afdb98d07b268914b56c8763c17f5a73 (diff)
downloadnextcloud-server-8f84c99e3f4455867d588eaeba29603e44ab1c31.tar.gz
nextcloud-server-8f84c99e3f4455867d588eaeba29603e44ab1c31.zip
Fix undefined properties
Diffstat (limited to 'apps/files_external/lib')
-rw-r--r--apps/files_external/lib/Lib/Storage/AmazonS3.php3
-rw-r--r--apps/files_external/lib/Lib/Storage/Swift.php4
2 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php
index 4bb4312a54f..d67db9858ca 100644
--- a/apps/files_external/lib/Lib/Storage/AmazonS3.php
+++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php
@@ -74,6 +74,9 @@ class AmazonS3 extends \OC\Files\Storage\Common {
*/
private $rescanDelay = 10;
+ /** @var string */
+ private $id;
+
/**
* @param string $path
* @return string correctly encoded path
diff --git a/apps/files_external/lib/Lib/Storage/Swift.php b/apps/files_external/lib/Lib/Storage/Swift.php
index d015e71f9d9..b7f833f9e72 100644
--- a/apps/files_external/lib/Lib/Storage/Swift.php
+++ b/apps/files_external/lib/Lib/Storage/Swift.php
@@ -68,6 +68,10 @@ class Swift extends \OC\Files\Storage\Common {
* @var array
*/
private $params;
+
+ /** @var string */
+ private $id;
+
/**
* @var array
*/