We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7917c21 commit c77304dCopy full SHA for c77304d
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NOT RELEASED
4
5
+### Changed
6
+
7
+- Enable compiler optimization for the `sprintf` function.
8
9
## 1.8.1
10
11
### Changed
src/Input/SendEmailRequest.php
@@ -356,7 +356,7 @@ private function requestBody(): array
356
$payload['FeedbackForwardingEmailAddressIdentityArn'] = $v;
357
}
358
if (null === $v = $this->content) {
359
- 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__));
360
361
$payload['Content'] = $v->requestBody();
362
if (null !== $v = $this->emailTags) {
0 commit comments