Skip to content

Commit 33969f7

Browse files
committed
Fix key name typo
1 parent 2e0e020 commit 33969f7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

system/Cache/CacheInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function getCacheInfo();
110110
*
111111
* @return array|false|null
112112
* Returns null if the item does not exist, otherwise array<string, mixed>
113-
* with at least the 'expires' key for absolute epoch expiry (or null).
113+
* with at least the 'expire' key for absolute epoch expiry (or null).
114114
* Some handlers may return false when an item does not exist, which is deprecated.
115115
*/
116116
public function getMetaData(string $key);

system/Cache/Handlers/FileHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public function getCacheInfo()
278278
*
279279
* @return array|false|null
280280
* Returns null if the item does not exist, otherwise array<string, mixed>
281-
* with at least the 'expires' key for absolute epoch expiry (or null).
281+
* with at least the 'expire' key for absolute epoch expiry (or null).
282282
* Some handlers may return false when an item does not exist, which is deprecated.
283283
*/
284284
public function getMetaData(string $key)

system/Cache/Handlers/MemcachedHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public function getCacheInfo()
337337
*
338338
* @return array|false|null
339339
* Returns null if the item does not exist, otherwise array<string, mixed>
340-
* with at least the 'expires' key for absolute epoch expiry (or null).
340+
* with at least the 'expire' key for absolute epoch expiry (or null).
341341
* Some handlers may return false when an item does not exist, which is deprecated.
342342
*/
343343
public function getMetaData(string $key)

system/Cache/Handlers/PredisHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public function getCacheInfo()
274274
*
275275
* @return array|false|null
276276
* Returns null if the item does not exist, otherwise array<string, mixed>
277-
* with at least the 'expires' key for absolute epoch expiry (or null).
277+
* with at least the 'expire' key for absolute epoch expiry (or null).
278278
*/
279279
public function getMetaData(string $key)
280280
{

system/Cache/Handlers/RedisHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public function getCacheInfo()
316316
*
317317
* @return array|null
318318
* Returns null if the item does not exist, otherwise array<string, mixed>
319-
* with at least the 'expires' key for absolute epoch expiry (or null).
319+
* with at least the 'expire' key for absolute epoch expiry (or null).
320320
*/
321321
public function getMetaData(string $key)
322322
{

system/Cache/Handlers/WincacheHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public function getCacheInfo()
178178
*
179179
* @return array|false|null
180180
* Returns null if the item does not exist, otherwise array<string, mixed>
181-
* with at least the 'expires' key for absolute epoch expiry (or null).
181+
* with at least the 'expire' key for absolute epoch expiry (or null).
182182
* Some handlers may return false when an item does not exist, which is deprecated.
183183
*/
184184
public function getMetaData(string $key)

0 commit comments

Comments
 (0)