Test Setup Failed
Push — master ( 562b48...254002 )
by Gabriel
04:15 queued 14s
created
legacy/Manager.php 1 patch
Doc Comments   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     protected $data;
20 20
 
21 21
     /**
22
-     * @param $cacheId
22
+     * @param string $cacheId
23 23
      *
24 24
      * @return mixed
25 25
      */
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-     * @param $active
61
+     * @param boolean $active
62 62
      *
63 63
      * @return $this
64 64
      */
@@ -156,6 +156,10 @@  discard block
 block discarded – undo
156 156
         return $this;
157 157
     }
158 158
 
159
+    /**
160
+     * @param string $cacheId
161
+     * @param integer[] $data
162
+     */
159 163
     public function put($cacheId, $data)
160 164
     {
161 165
         $this->set($cacheId, $data);
@@ -166,7 +170,7 @@  discard block
 block discarded – undo
166 170
      * @param $cacheId
167 171
      * @param $data
168 172
      *
169
-     * @return bool
173
+     * @return boolean|null
170 174
      */
171 175
     public function saveData($cacheId, $data)
172 176
     {
@@ -177,10 +181,10 @@  discard block
 block discarded – undo
177 181
     }
178 182
 
179 183
     /**
180
-     * @param $file
181
-     * @param $content
184
+     * @param string $file
185
+     * @param string $content
182 186
      *
183
-     * @return bool
187
+     * @return boolean|null
184 188
      */
185 189
     public function save($file, $content)
186 190
     {
Please login to merge, or discard this patch.