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 37d8c98 commit 6ae1d40
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.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/SessionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function setUp(): void
$response = $this->client->tableExists(['TableName' => $this->options['table_name']]);
$response->wait(100, 3);
if (!$response->isSuccess()) {
throw new RuntimeException(sprintf('Could not create table %s', $this->options['table_name']));
throw new RuntimeException(\sprintf('Could not create table %s', $this->options['table_name']));
}

$this->client->updateTimeToLive([
Expand Down

0 comments on commit 6ae1d40

Please sign in to comment.