Skip to content

Commit

Permalink
Fix ArrayStorage::setMultiple() return value (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartkCz authored and roxblnfk committed Dec 11, 2024
1 parent 090b2df commit d254d09
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 d254d09

Please sign in to comment.