Completed
Branch master (c5ac33)
by Siad
10:40
created
src/Cache/Storage/Adapter/Couchbase.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,9 +170,9 @@
 block discarded – undo
170 170
     /**
171 171
      * Set options.
172 172
      *
173
-     * @param array|\Traversable|CouchbaseOptions $options
173
+     * @param CouchbaseOptions $options
174 174
      *
175
-     * @return \CouchbaseCluster
175
+     * @return AbstractAdapter
176 176
      *
177 177
      * @see    getOptions()
178 178
      */
Please login to merge, or discard this patch.
src/Cache/Storage/Adapter/CouchbaseResourceManager.php 1 patch
Doc Comments   +11 added lines, -2 removed lines patch added patch discarded remove patch
@@ -309,6 +309,9 @@  discard block
 block discarded – undo
309 309
         return $this;
310 310
     }
311 311
 
312
+    /**
313
+     * @param string $id
314
+     */
312 315
     public function getUsername($id)
313 316
     {
314 317
         if (!$this->hasResource($id)) {
@@ -345,7 +348,7 @@  discard block
 block discarded – undo
345 348
     /**
346 349
      * Get encoder.
347 350
      *
348
-     * @param $id
351
+     * @param string $id
349 352
      *
350 353
      * @return CouchbaseBucketResource
351 354
      */
@@ -385,7 +388,7 @@  discard block
 block discarded – undo
385 388
     /**
386 389
      * Get decoder.
387 390
      *
388
-     * @param $id
391
+     * @param string $id
389 392
      *
390 393
      * @return CouchbaseBucketResource
391 394
      */
@@ -428,6 +431,9 @@  discard block
 block discarded – undo
428 431
         return $this;
429 432
     }
430 433
 
434
+    /**
435
+     * @param string $id
436
+     */
431 437
     public function getBucket($id)
432 438
     {
433 439
         if (!$this->hasResource($id)) {
@@ -467,6 +473,9 @@  discard block
 block discarded – undo
467 473
         return $this;
468 474
     }
469 475
 
476
+    /**
477
+     * @param string $id
478
+     */
470 479
     public function getPassword($id)
471 480
     {
472 481
         if (!$this->hasResource($id)) {
Please login to merge, or discard this patch.