Skip to content

Commit 8055b70

Browse files
authored
Bump php-cs-fixer to version 3.60 (#1743)
1 parent 78a0754 commit 8055b70

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.1.3
610

711
### Changed

src/Input/DetectDominantLanguageRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private function requestBody(): array
8383
{
8484
$payload = [];
8585
if (null === $v = $this->text) {
86-
throw new InvalidArgument(sprintf('Missing parameter "Text" for "%s". The value cannot be null.', __CLASS__));
86+
throw new InvalidArgument(\sprintf('Missing parameter "Text" for "%s". The value cannot be null.', __CLASS__));
8787
}
8888
$payload['Text'] = $v;
8989

0 commit comments

Comments
 (0)