Completed
Push — master ( 211374...822b43 )
by yuuki
12s
created
src/Cache/MemcachedBucketStore.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * Increment the value of an item in the cache.
57 57
      *
58 58
      * @param string $key
59
-     * @param mixed  $value
59
+     * @param integer  $value
60 60
      *
61 61
      * @return int|bool
62 62
      */
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * Decrement the value of an item in the cache.
78 78
      *
79 79
      * @param string $key
80
-     * @param mixed  $value
80
+     * @param integer  $value
81 81
      *
82 82
      * @return int|bool
83 83
      */
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-     * @param $handler
125
+     * @param resource $handler
126 126
      *
127 127
      * @throws \RuntimeException
128 128
      */
Please login to merge, or discard this patch.
src/Database/CouchbaseConnection.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-     * @param $name
101
+     * @param string $name
102 102
      *
103 103
      * @return \CouchbaseBucket
104 104
      */
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      * @param string $query
280 280
      * @param array  $bindings
281 281
      *
282
-     * @return int|mixed
282
+     * @return integer
283 283
      */
284 284
     public function insert($query, $bindings = [])
285 285
     {
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
     }
320 320
 
321 321
     /**
322
-     * @param       $query
322
+     * @param       string $query
323 323
      * @param array $bindings
324 324
      *
325 325
      * @return mixed
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
     }
472 472
 
473 473
     /**
474
-     * @return \string[]
474
+     * @return string[]
475 475
      */
476 476
     public function metrics()
477 477
     {
Please login to merge, or discard this patch.