diff options
author | Christian Berendt <berendt@b1-systems.de> | 2013-08-01 10:05:01 +0200 |
---|---|---|
committer | Christian Berendt <berendt@b1-systems.de> | 2013-08-01 10:05:01 +0200 |
commit | 3e53e25cd17704eeb529d0869ecdeccc2a699364 (patch) | |
tree | e69a443e107f4baa202a08c1d94f04ab80d434d2 /apps/files_external | |
parent | 50101a85a63f29c47abe325aecb3af26bc8a96d1 (diff) | |
download | nextcloud-server-3e53e25cd17704eeb529d0869ecdeccc2a699364.tar.gz nextcloud-server-3e53e25cd17704eeb529d0869ecdeccc2a699364.zip |
added @var tags
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/amazons3.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1a..99ca261284e 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -33,10 +33,25 @@ use Aws\S3\Exception\S3Exception; class AmazonS3 extends \OC\Files\Storage\Common { + /** + * @var \Aws\S3\S3Client + */ private $connection; + /** + * @var string + */ private $bucket; + /** + * @var array + */ private static $tmpFiles = array(); + /** + * @var bool + */ private $test = false; + /** + * @var int + */ private $timeout = 15; private function normalizePath($path) { |