Completed
Pull Request — developer (#8035)
by Sławomir
52:36 queued 34:33
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.
app/Fields/Owner.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 * Function to get all the accessible users.
90 90
 	 *
91 91
 	 * @param string $private
92
-	 * @param mixed  $fieldType
92
+	 * @param boolean  $fieldType
93 93
 	 *
94 94
 	 * @return array
95 95
 	 */
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	 * @param string $status
182 182
 	 * @param mixed  $assignedUser
183 183
 	 * @param string $private
184
-	 * @param mixed  $roles
184
+	 * @param boolean  $roles
185 185
 	 *
186 186
 	 * @return array
187 187
 	 */
@@ -223,8 +223,8 @@  discard block
 block discarded – undo
223 223
 	/**
224 224
 	 * Function gets sql query.
225 225
 	 *
226
-	 * @param mixed $private
227
-	 * @param mixed $status
226
+	 * @param string $private
227
+	 * @param string $status
228 228
 	 * @param mixed $roles
229 229
 	 *
230 230
 	 * @return \App\Db\Query
@@ -412,7 +412,6 @@  discard block
 block discarded – undo
412 412
 	/**
413 413
 	 * Function returns list of accessible users for a module.
414 414
 	 *
415
-	 * @param string $module
416 415
 	 *
417 416
 	 * @return <Array of Users_Record_Model>
418 417
 	 */
Please login to merge, or discard this patch.