]> source.dussan.org Git - nextcloud-server.git/commitdiff
added @var tags
authorChristian Berendt <berendt@b1-systems.de>
Thu, 1 Aug 2013 08:05:01 +0000 (10:05 +0200)
committerChristian Berendt <berendt@b1-systems.de>
Thu, 1 Aug 2013 08:05:01 +0000 (10:05 +0200)
apps/files_external/lib/amazons3.php

index f2dd6108b1a27286d3896f52048f2c5ff9949567..99ca261284e4f5cba8a79c3587995ab3df6a0d51 100644 (file)
@@ -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) {