Completed
Pull Request — developer (#8035)
by Sławomir
310:20 queued 274:02
created
app/Cache/Base.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	 * Cache save.
52 52
 	 *
53 53
 	 * @param string            $key      Cache ID
54
-	 * @param string|array|null $value    Data to store
54
+	 * @param string|null $value    Data to store
55 55
 	 * @param int|false         $duration Cache TTL (in seconds)
56 56
 	 *
57 57
 	 * @return bool
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @param string|array $key Cache ID
70 70
 	 *
71
-	 * @return bool
71
+	 * @return boolean|null
72 72
 	 */
73 73
 	public function delete($key)
74 74
 	{
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	/**
79 79
 	 * Deletes all items in the cache.
80 80
 	 *
81
-	 * @return bool
81
+	 * @return boolean|null
82 82
 	 */
83 83
 	public function clear()
84 84
 	{
Please login to merge, or discard this patch.