Completed
Push — master ( 9ba802...edbcad )
by Lars
02:46
created
src/voku/cache/AdapterMemcache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
   /**
28 28
    * __construct
29 29
    *
30
-   * @param \Memcache $memcache
30
+   * @param \Memcache|null $memcache
31 31
    */
32 32
   public function __construct($memcache)
33 33
   {
Please login to merge, or discard this patch.
src/voku/cache/AdapterMemcached.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
   /**
23 23
    * __construct
24 24
    *
25
-   * @param \Memcached $memcached
25
+   * @param \Memcached|null $memcached
26 26
    */
27 27
   public function __construct($memcached)
28 28
   {
Please login to merge, or discard this patch.
src/voku/cache/AdapterPredis.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
   private $client;
23 23
 
24 24
   /**
25
-   * @param Client $client
25
+   * @param Client|null $client
26 26
    */
27 27
   public function __construct($client)
28 28
   {
Please login to merge, or discard this patch.
src/voku/cache/AdapterFile.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
   }
211 211
 
212 212
   /**
213
-   * @param $cacheFile
213
+   * @param string $cacheFile
214 214
    *
215 215
    * @return bool
216 216
    */
Please login to merge, or discard this patch.
src/voku/cache/Cache.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
   }
406 406
 
407 407
   /**
408
-   * @param $str
408
+   * @param string $str
409 409
    *
410 410
    * @return string
411 411
    */
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
   }
438 438
 
439 439
   /**
440
-   * @return mixed
440
+   * @return string
441 441
    */
442 442
   public function getPrefix()
443 443
   {
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
    * @param mixed     $value
462 462
    * @param \DateTime $date
463 463
    *
464
-   * @return mixed|void
464
+   * @return boolean
465 465
    * @throws \Exception
466 466
    */
467 467
   public function setItemToDate($key, $value, \DateTime $date)
Please login to merge, or discard this patch.