Completed
Push — v5 ( 9c84b7...e03f3a )
by Georges
02:50
created
src/phpFastCache/Core/DriverAbstract.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
 
291 291
     /**
292
-     * @return mixed
292
+     * @return ExtendedCacheItemPoolInterface
293 293
      */
294 294
     protected function backup()
295 295
     {
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
     }
298 298
 
299 299
     /**
300
-     * @param $file
300
+     * @param string $file
301 301
      * @return string
302 302
      * @throws \Exception
303 303
      */
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
      * @param array $tags | array("a","b","c")
480 480
      * @param int $time
481 481
      * @param array $options
482
-     * @return mixed
482
+     * @return boolean
483 483
      * @internal param array $option | $option = array("tags" => array("a","b","c")
484 484
      */
485 485
     public function touchTags($tags = [], $time = 300, $options = [])
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
     /**
501 501
      * @param array $tags | array("a","b","c")
502 502
      * @param array $option | $option = array("tags" => array("a","b","c")
503
-     * @return mixed
503
+     * @return boolean
504 504
      */
505 505
     public function deleteTags($tags = [], $option = [])
506 506
     {
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
      * @param array $tags | array("a","b","c")
523 523
      * @param integer
524 524
      * @param array $option | $option = array("tags" => array("a","b","c")
525
-     * @return mixed
525
+     * @return boolean
526 526
      */
527 527
     public function incrementTags($tags = [], $step = 1, $option = [])
528 528
     {
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
      * @param array $tags | array("a","b","c")
544 544
      * @param integer
545 545
      * @param array $option | $option = array("tags" => array("a","b","c")
546
-     * @return mixed
546
+     * @return boolean
547 547
      */
548 548
     public function decrementTags($tags = [], $step = 1, $option = [])
549 549
     {
Please login to merge, or discard this patch.
src/phpFastCache/Core/PathSeekerTrait.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@  discard block
 block discarded – undo
20 20
 trait PathSeekerTrait
21 21
 {
22 22
     /**
23
-     * @param bool $skip_create_path
24 23
      * @param $config
25 24
      * @return string
26 25
      * @throws \Exception
@@ -155,7 +154,7 @@  discard block
 block discarded – undo
155 154
 
156 155
     /**
157 156
      * @param $filename
158
-     * @return mixed
157
+     * @return string
159 158
      */
160 159
     protected static function cleanFileName($filename)
161 160
     {
@@ -170,7 +169,7 @@  discard block
 block discarded – undo
170 169
     }
171 170
 
172 171
     /**
173
-     * @param $path
172
+     * @param string $path
174 173
      * @param bool $create
175 174
      * @throws \Exception
176 175
      */
Please login to merge, or discard this patch.
src/phpFastCache/Core/StandardPsr6StructureTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
     /**
159 159
      * @param \Psr\Cache\CacheItemInterface $item
160
-     * @return mixed
160
+     * @return boolean
161 161
      * @throws \InvalidArgumentException
162 162
      */
163 163
     public function save(CacheItemInterface $item)
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     }
176 176
 
177 177
     /**
178
-     * @return mixed|null
178
+     * @return boolean
179 179
      * @throws \InvalidArgumentException
180 180
      */
181 181
     public function commit()
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Couchbase/Driver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @return bool
131
+     * @return boolean|null
132 132
      */
133 133
     public function driverConnect()
134 134
     {
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Devnull/Driver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param \Psr\Cache\CacheItemInterface $item
56
-     * @return mixed
56
+     * @return boolean
57 57
      * @throws \InvalidArgumentException
58 58
      */
59 59
     public function driverWrite(CacheItemInterface $item)
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     /**
114 114
      * @param \Psr\Cache\CacheItemInterface $item
115
-     * @return bool
115
+     * @return boolean|null
116 116
      * @throws \InvalidArgumentException
117 117
      */
118 118
     public function driverIsHit(CacheItemInterface $item)
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Devtrue/Driver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param \Psr\Cache\CacheItemInterface $item
56
-     * @return mixed
56
+     * @return boolean
57 57
      * @throws \InvalidArgumentException
58 58
      */
59 59
     public function driverWrite(CacheItemInterface $item)
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     /**
72 72
      * @param $key
73
-     * @return mixed
73
+     * @return boolean
74 74
      */
75 75
     public function driverRead($key)
76 76
     {
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Files/Driver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * @param \Psr\Cache\CacheItemInterface $item
58
-     * @return mixed
58
+     * @return boolean|null
59 59
      * @throws \InvalidArgumentException
60 60
      */
61 61
     public function driverWrite(CacheItemInterface $item)
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Memcached/Driver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @return bool
131
+     * @return boolean|null
132 132
      */
133 133
     public function driverConnect()
134 134
     {
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     }
295 295
 
296 296
     /**
297
-     * @return mixed|null
297
+     * @return boolean
298 298
      * @throws \InvalidArgumentException
299 299
      */
300 300
     public function commit()
Please login to merge, or discard this patch.
src/phpFastCache/Drivers/Mongodb/Driver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param \Psr\Cache\CacheItemInterface $item
70
-     * @return mixed
70
+     * @return boolean
71 71
      * @throws \InvalidArgumentException
72 72
      */
73 73
     public function driverWrite(CacheItemInterface $item)
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     }
143 143
 
144 144
     /**
145
-     * @return bool
145
+     * @return boolean|null
146 146
      * @throws MongoConnectionException
147 147
      * @throws LogicException
148 148
      */
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
     /**
183 183
      * @param \Psr\Cache\CacheItemInterface $item
184
-     * @return bool
184
+     * @return boolean|null
185 185
      * @throws \InvalidArgumentException
186 186
      */
187 187
     public function driverIsHit(CacheItemInterface $item)
Please login to merge, or discard this patch.