Skip to content

Commit

Permalink
Update Bucket.php
Browse files Browse the repository at this point in the history
Coding style fix
  • Loading branch information
izytechAB authored and nekufa committed Jan 21, 2025
1 parent 792d5e5 commit 5aba6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KeyValue/Bucket.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function getEntry(string $key): ?Entry
$revision = $response->message->seq;
$value = base64_decode($response->message->data);

return new Entry($this->name, $key, $value, $revision,$response->message->time);
return new Entry($this->name, $key, $value, $revision, $response->message->time);

}

Expand Down

2 comments on commit 5aba6eb

@goodway
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fix is so release-worthy

@nekufa
Copy link
Member

@nekufa nekufa commented on 5aba6eb Jan 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@goodway there are some additional commits adding entry.time property and this one is just code style fixes)

Please sign in to comment.