Skip to content

Commit 83e53aa

Browse files
authored
Bump php-cs-fixer to version 3.60 (#1743)
1 parent 5242fcf commit 83e53aa

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
## 2.1.0
610

711
### Added

src/SimpleS3Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class SimpleS3Client extends S3Client
2222
{
2323
public function getUrl(string $bucket, string $key): string
2424
{
25-
$uri = sprintf('/%s/%s', urlencode($bucket), str_replace('%2F', '/', rawurlencode($key)));
25+
$uri = \sprintf('/%s/%s', urlencode($bucket), str_replace('%2F', '/', rawurlencode($key)));
2626

2727
return $this->getEndpoint($uri, [], null);
2828
}

0 commit comments

Comments
 (0)