Skip to content

Commit 6ae1d40

Browse files
authored
Bump php-cs-fixer to version 3.60 (#1743)
1 parent 37d8c98 commit 6ae1d40

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

711
### Added

src/SessionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function setUp(): void
9191
$response = $this->client->tableExists(['TableName' => $this->options['table_name']]);
9292
$response->wait(100, 3);
9393
if (!$response->isSuccess()) {
94-
throw new RuntimeException(sprintf('Could not create table %s', $this->options['table_name']));
94+
throw new RuntimeException(\sprintf('Could not create table %s', $this->options['table_name']));
9595
}
9696

9797
$this->client->updateTimeToLive([

0 commit comments

Comments
 (0)