File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/Symfony/Component/Cache/Traits Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -237,12 +237,12 @@ public function info(...$sections): \Relay\Relay|array|false
237
237
return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->info (...\func_get_args ());
238
238
}
239
239
240
- public function flushdb ($ async = false ): \Relay \Relay |bool
240
+ public function flushdb ($ sync = null ): \Relay \Relay |bool
241
241
{
242
242
return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->flushdb (...\func_get_args ());
243
243
}
244
244
245
- public function flushall ($ async = false ): \Relay \Relay |bool
245
+ public function flushall ($ sync = null ): \Relay \Relay |bool
246
246
{
247
247
return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->flushall (...\func_get_args ());
248
248
}
@@ -327,6 +327,11 @@ public function lastsave(): \Relay\Relay|false|int
327
327
return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->lastsave (...\func_get_args ());
328
328
}
329
329
330
+ public function lcs ($ key1 , $ key2 , $ options = null ): mixed
331
+ {
332
+ return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->lcs (...\func_get_args ());
333
+ }
334
+
330
335
public function bgsave ($ schedule = false ): \Relay \Relay |bool
331
336
{
332
337
return ($ this ->lazyObjectState ->realInstance ??= ($ this ->lazyObjectState ->initializer )())->bgsave (...\func_get_args ());
You can’t perform that action at this time.
0 commit comments