Skip to content

Commit c77304d

Browse files
authored
Bump php-cs-fixer to version 3.60 (#1743)
1 parent 7917c21 commit c77304d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- Enable compiler optimization for the `sprintf` function.
8+
59
## 1.8.1
610

711
### Changed

src/Input/SendEmailRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private function requestBody(): array
356356
$payload['FeedbackForwardingEmailAddressIdentityArn'] = $v;
357357
}
358358
if (null === $v = $this->content) {
359-
throw new InvalidArgument(sprintf('Missing parameter "Content" for "%s". The value cannot be null.', __CLASS__));
359+
throw new InvalidArgument(\sprintf('Missing parameter "Content" for "%s". The value cannot be null.', __CLASS__));
360360
}
361361
$payload['Content'] = $v->requestBody();
362362
if (null !== $v = $this->emailTags) {

0 commit comments

Comments
 (0)