Completed
Pull Request — master (#525)
by
unknown
06:45 queued 04:32
created
src/Gaufrette/Adapter/Apc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
      * @param string $key    - by default ''
139 139
      * @param int    $format - by default APC_ITER_NONE
140 140
      *
141
-     * @return \APCIterator
141
+     * @return \Traversable
142 142
      */
143 143
     protected function getCachedKeysIterator($key = '', $format = APC_ITER_NONE)
144 144
     {
Please login to merge, or discard this patch.
src/Gaufrette/StreamWrapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
     /**
214 214
      * @param string $path
215 215
      *
216
-     * @return mixed
216
+     * @return boolean
217 217
      */
218 218
     public function unlink($path)
219 219
     {
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AzureBlobStorage.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @author Paweł Czyżewski <[email protected]>
19 19
  */
20 20
 class AzureBlobStorage implements Adapter,
21
-                                  MetadataSupporter
21
+                                    MetadataSupporter
22 22
 {
23 23
     /**
24 24
      * Error constants.
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -512,10 +512,10 @@
 block discarded – undo
512 512
     {
513 513
         $blobList = $this->blobProxy->listBlobs($containerName);
514 514
         return array_map(
515
-            function (Blob $blob) use ($prefix) {
515
+            function(Blob $blob) use ($prefix) {
516 516
                 $name = $blob->getName();
517 517
                 if (null !== $prefix) {
518
-                    $name = $prefix .'/'. $name;
518
+                    $name = $prefix.'/'.$name;
519 519
                 }
520 520
                 return $name;
521 521
             },
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
     }
467 467
 
468 468
     /**
469
-     * @param string|resource $content
469
+     * @param string $content
470 470
      *
471 471
      * @return string
472 472
      */
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
     /**
485 485
      * @param string $key
486 486
      *
487
-     * @return array
487
+     * @return string[]
488 488
      * @throws \InvalidArgumentException
489 489
      */
490 490
     private function tokenizeKey($key)
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
 
509 509
     /**
510 510
      * @param string $containerName
511
-     * @param null   $prefix
511
+     * @param string   $prefix
512 512
      *
513 513
      * @return array
514 514
      */
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AwsS3.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -287,6 +287,9 @@
 block discarded – undo
287 287
         return true;
288 288
     }
289 289
 
290
+    /**
291
+     * @param string $key
292
+     */
290 293
     protected function getOptions($key, array $options = [])
291 294
     {
292 295
         $options['ACL'] = $this->options['acl'];
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
  * @author  Michael Dowling <[email protected]>
13 13
  */
14 14
 class AwsS3 implements Adapter,
15
-                       MetadataSupporter,
16
-                       ListKeysAware,
17
-                       SizeCalculator,
18
-                       MimeTypeProvider
15
+                        MetadataSupporter,
16
+                        ListKeysAware,
17
+                        SizeCalculator,
18
+                        MimeTypeProvider
19 19
 {
20 20
     /** @var S3Client */
21 21
     protected $service;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AclAwareAmazonS3.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -186,6 +186,9 @@
 block discarded – undo
186 186
         return $this->users;
187 187
     }
188 188
 
189
+    /**
190
+     * @param string $key
191
+     */
189 192
     private function updateAcl($key)
190 193
     {
191 194
         $response = $this->s3->set_object_acl($this->bucketName, $key, $this->getAcl());
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  * @deprecated The AclAwareAmazonS3 adapter is deprecated since version 0.4 and will be removed in 1.0. Use the AwsS3 adapter instead.
20 20
  */
21 21
 class AclAwareAmazonS3 implements Adapter,
22
-                                  MetadataSupporter
22
+                                    MetadataSupporter
23 23
 {
24 24
     protected $delegate;
25 25
     protected $s3;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AmazonS3.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @deprecated The AmazonS3 adapter is deprecated since version 0.4 and will be removed in 1.0. Use the AwsS3 adapter instead.
19 19
  */
20 20
 class AmazonS3 implements Adapter,
21
-                          MetadataSupporter
21
+                            MetadataSupporter
22 22
 {
23 23
     protected $service;
24 24
     protected $bucket;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Sftp.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * @deprecated The Sftp adapter is deprecated since version 0.4 and will be removed in 1.0.
12 12
  */
13 13
 class Sftp implements Adapter,
14
-                      ChecksumCalculator
14
+                        ChecksumCalculator
15 15
 {
16 16
     protected $sftp;
17 17
     protected $directory;
Please login to merge, or discard this patch.
src/Gaufrette/Filesystem.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -241,6 +241,7 @@
 block discarded – undo
241 241
 
242 242
     /**
243 243
      * {@inheritdoc}
244
+     * @param string $key
244 245
      */
245 246
     public function createFile($key)
246 247
     {
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/PhpseclibSftp.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@
 block discarded – undo
8 8
 use phpseclib\Net\SFTP as SecLibSFTP;
9 9
 
10 10
 class PhpseclibSftp implements Adapter,
11
-                               FileFactory,
12
-                               ListKeysAware
11
+                                FileFactory,
12
+                                ListKeysAware
13 13
 {
14 14
     protected $sftp;
15 15
     protected $directory;
Please login to merge, or discard this patch.