Completed
Push — develop ( c0c47b...cc4ea9 )
by Siad
04:17
created
src/Cache/Storage/Adapter/CouchbaseResourceManager.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -368,6 +368,9 @@  discard block
 block discarded – undo
368 368
         return $this;
369 369
     }
370 370
 
371
+    /**
372
+     * @param string $id
373
+     */
371 374
     public function getUsername($id)
372 375
     {
373 376
         if (!$this->hasResource($id)) {
@@ -405,6 +408,9 @@  discard block
 block discarded – undo
405 408
         return $this;
406 409
     }
407 410
 
411
+    /**
412
+     * @param string $id
413
+     */
408 414
     public function getBucket($id)
409 415
     {
410 416
         if (!$this->hasResource($id)) {
@@ -442,6 +448,9 @@  discard block
 block discarded – undo
442 448
         return $this;
443 449
     }
444 450
 
451
+    /**
452
+     * @param string $id
453
+     */
445 454
     public function getPassword($id)
446 455
     {
447 456
         if (!$this->hasResource($id)) {
Please login to merge, or discard this patch.
src/Cache/Storage/Adapter/Couchbase.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * Constructor.
63 63
      *
64
-     * @param null|array|\Traversable|CouchbaseOptions $options
64
+     * @param CouchbaseOptions $options
65 65
      *
66 66
      * @throws Exception\ExceptionInterface
67 67
      */
@@ -170,9 +170,9 @@  discard block
 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.