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 844f874 commit 9626bb7
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.5.4

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

$index = -1;
Expand Down

0 comments on commit 9626bb7

Please sign in to comment.