|
@@ -68,8 +68,8 @@ discard block |
|
|
block discarded – undo |
|
68
|
68
|
/** |
|
69
|
69
|
* Obtains multiple cache items by their unique keys. |
|
70
|
70
|
* |
|
71
|
|
- * @param iterable $keys A list of keys that can obtained in a single operation. |
|
72
|
|
- * @param mixed $default Default value to return for keys that do not exist. |
|
|
71
|
+ * @param string[] $keys A list of keys that can obtained in a single operation. |
|
|
72
|
+ * @param \stdClass $default Default value to return for keys that do not exist. |
|
73
|
73
|
* |
|
74
|
74
|
* @return array List of key => value pairs. Cache keys that do not exist or are stale will have $default as value. |
|
75
|
75
|
* |
|
@@ -154,7 +154,7 @@ discard block |
|
|
block discarded – undo |
|
154
|
154
|
/** |
|
155
|
155
|
* Deletes multiple cache items in a single operation. |
|
156
|
156
|
* |
|
157
|
|
- * @param iterable $keys A list of string-based keys to be deleted. |
|
|
157
|
+ * @param string[] $keys A list of string-based keys to be deleted. |
|
158
|
158
|
* |
|
159
|
159
|
* @return boolean True if the items were successfully removed. False if there was an error. |
|
160
|
160
|
* |
Please login to merge, or discard this patch.