We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7b377 commit d59c4ebCopy full SHA for d59c4eb
system/Cache/Handlers/PredisHandler.php
@@ -199,7 +199,7 @@ public function deleteMatching(string $pattern)
199
200
foreach (new Keyspace($this->redis, $pattern) as $key)
201
{
202
- array_push($matchedKeys, $key);
+ $matchedKeys[] = $key;
203
}
204
205
return $this->redis->del($matchedKeys);
system/Cache/Handlers/RedisHandler.php
@@ -245,7 +245,7 @@ public function deleteMatching(string $pattern)
245
246
foreach ($keys as $key)
247
248
249
250
251
0 commit comments