mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Merge pull request #4265 from berendt/OC_Files_Storage_AmazonS3_phpdoc
added @var tags
This commit is contained in:
commit
77dad7070d
1 changed files with 15 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue