We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d8c98 commit 6ae1d40Copy full SHA for 6ae1d40
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NOT RELEASED
4
5
+### Changed
6
+
7
+- Enable compiler optimization for the `sprintf` function.
8
9
## 1.1.0
10
11
### Added
src/SessionHandler.php
@@ -91,7 +91,7 @@ public function setUp(): void
91
$response = $this->client->tableExists(['TableName' => $this->options['table_name']]);
92
$response->wait(100, 3);
93
if (!$response->isSuccess()) {
94
- 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']));
95
}
96
97
$this->client->updateTimeToLive([
0 commit comments