Skip to content

Commit

Permalink
Pint
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverearl committed Nov 27, 2024
1 parent d0154ad commit 168d0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Resources/MessageSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static function make(array $response): static
{
return new self(
sent: Message::make($response['sentMessage']),
reply: Message::make($response['replyMessage'])
reply: Message::make($response['replyMessage']),
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use JsonSerializable;

readonly abstract class Resource implements JsonSerializable
abstract readonly class Resource implements JsonSerializable
{
/**
* Return a new resource based on the API response.
Expand Down

0 comments on commit 168d0ea

Please sign in to comment.