Skip to content

Commit

Permalink
Bump php-cs-fixer to version 3.60 (#1743)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse authored Jul 30, 2024
1 parent 7917c21 commit c77304d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- Enable compiler optimization for the `sprintf` function.

## 1.8.1

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Input/SendEmailRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ private function requestBody(): array
$payload['FeedbackForwardingEmailAddressIdentityArn'] = $v;
}
if (null === $v = $this->content) {
throw new InvalidArgument(sprintf('Missing parameter "Content" for "%s". The value cannot be null.', __CLASS__));
throw new InvalidArgument(\sprintf('Missing parameter "Content" for "%s". The value cannot be null.', __CLASS__));
}
$payload['Content'] = $v->requestBody();
if (null !== $v = $this->emailTags) {
Expand Down

0 comments on commit c77304d

Please sign in to comment.