Skip to content

Commit

Permalink
Fix ArrayStorage::setMultiple() return value
Browse files Browse the repository at this point in the history
  • Loading branch information
MartkCz committed Nov 30, 2024
1 parent fc1ed08 commit 8f8b949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cache/src/Storage/ArrayStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function setMultiple(iterable $values, null|int|\DateInterval|\DateTimeIn
$this->set($key, $value, $ttl);
}

return false;
return true;
}

public function deleteMultiple(iterable $keys): bool
Expand Down

0 comments on commit 8f8b949

Please sign in to comment.