Skip to content

Commit

Permalink
Merge pull request #48695 from nextcloud/stable28BackportMissingSetTTL
Browse files Browse the repository at this point in the history
  • Loading branch information
Altahrim authored Oct 30, 2024
2 parents d99c24b + fe46def commit cb8ce13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Lock/MemcacheLockingProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(
parent::__construct($ttl);
}

private function setTTL(string $path, int $ttl = null, ?int $compare = null): void {
private function setTTL(string $path, int $ttl = null, mixed $compare = null): void {
if (is_null($ttl)) {
$ttl = $this->ttl;
}
Expand Down

0 comments on commit cb8ce13

Please sign in to comment.