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 1de0137 commit ef54bc2Copy full SHA for ef54bc2
Model/Cache/Evictor.php
@@ -74,9 +74,9 @@ public function evict(): int
74
}
75
76
$dbKeys = $this->run(
77
- $cacheConfig['backend_options']['server'],
78
- $cacheConfig['backend_options']['port'],
79
- $cacheConfig['backend_options']['database']
+ (string)$cacheConfig['backend_options']['server'],
+ (int)$cacheConfig['backend_options']['port'],
+ (int)$cacheConfig['backend_options']['database']
80
);
81
$evictedKeys += $dbKeys;
82
0 commit comments