Passed
Branch master (a88228)
by Antonio Carlos
03:29
created
src/Repositories/Cache/Cache.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Check if cache has key.
49 49
      *
50
-     * @param $key
50
+     * @param string $key
51 51
      *
52 52
      * @return bool
53 53
      */
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * Get a value from the cache.
65 65
      *
66
-     * @param $key
66
+     * @param string|null $key
67 67
      *
68
-     * @return mixed|null
68
+     * @return \Illuminate\Contracts\Cache\Repository|null
69 69
      */
70 70
     public function get($key)
71 71
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Remove an ip address from cache.
79 79
      *
80
-     * @param $key
80
+     * @param \Illuminate\Database\Eloquent\Model $key
81 81
      *
82 82
      * @return void
83 83
      */
Please login to merge, or discard this patch.