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 78a0754 commit 8055b70
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.1.3

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

Expand Down

0 comments on commit 8055b70

Please sign in to comment.