Skip to content

Commit 1e83686

Browse files
authored
Bump php-cs-fixer to version 3.60 (#1743)
1 parent 13cce86 commit 1e83686

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
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.7.0
610

711
### Added

src/Input/DescribeStackDriftDetectionStatusInput.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private function requestBody(): array
8181
{
8282
$payload = [];
8383
if (null === $v = $this->stackDriftDetectionId) {
84-
throw new InvalidArgument(sprintf('Missing parameter "StackDriftDetectionId" for "%s". The value cannot be null.', __CLASS__));
84+
throw new InvalidArgument(\sprintf('Missing parameter "StackDriftDetectionId" for "%s". The value cannot be null.', __CLASS__));
8585
}
8686
$payload['StackDriftDetectionId'] = $v;
8787

0 commit comments

Comments
 (0)