Skip to content

Commit 32dab8b

Browse files
committed
Upgrade php-cs-fixer to version 3.64
1 parent e666e9e commit 32dab8b

File tree

12 files changed

+24
-8
lines changed

12 files changed

+24
-8
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
1818
},
1919
"require-dev": {
20-
"friendsofphp/php-cs-fixer": "~3.60.0",
20+
"friendsofphp/php-cs-fixer": "~3.64.0",
2121
"illuminate/cache": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
2222
"illuminate/queue": "^6.18.11 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
2323
"illuminate/support": "^6.18.13 || ^7.10 || ^8.0 || ^9.0 || ^10.0 || ^11.0",

src/CodeGenerator/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ext-SimpleXML": "*",
99
"ext-dom": "*",
1010
"ext-json": "*",
11-
"friendsofphp/php-cs-fixer": "~3.60.0",
11+
"friendsofphp/php-cs-fixer": "~3.64.0",
1212
"nette/php-generator": "^3.6 || ^4.1",
1313
"nette/utils": "^3.0 || ^4.0",
1414
"nikic/php-parser": "^4.0",

src/Core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Added support for EKS Pod Identity
88

9+
### Changed
10+
11+
- Fix CS
12+
913
## 1.22.1
1014

1115
### Changed

src/Core/src/Credentials/Credentials.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(
3939
string $accessKeyId,
4040
string $secretKey,
4141
?string $sessionToken = null,
42-
?\DateTimeImmutable $expireDate = null
42+
?\DateTimeImmutable $expireDate = null,
4343
) {
4444
$this->accessKeyId = $accessKeyId;
4545
$this->secretKey = $secretKey;

src/Core/src/Signer/SigningContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(
3838
Request $request,
3939
\DateTimeImmutable $now,
4040
string $credentialString,
41-
string $signingKey
41+
string $signingKey,
4242
) {
4343
$this->request = $request;
4444
$this->now = $now;

src/Core/src/Test/ResultMockFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static function createFailing(
3737
string $class,
3838
int $code,
3939
?string $message = null,
40-
array $additionalContent = []
40+
array $additionalContent = [],
4141
) {
4242
if (Result::class !== $class) {
4343
$parent = get_parent_class($class);

src/Integration/Aws/SimpleS3/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+
- Fix CS
8+
59
## 2.1.1
610

711
### Changed

src/Integration/Aws/SimpleS3/src/SimpleS3Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getPresignedUrl(
3131
string $bucket,
3232
string $key,
3333
?\DateTimeImmutable $expires = null,
34-
?string $versionId = null
34+
?string $versionId = null,
3535
): string {
3636
$request = new GetObjectRequest([
3737
'Bucket' => $bucket,

src/Integration/Laravel/Cache/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+
- Fix CS
8+
59
## 1.1.0
610

711
### Added

src/Integration/Laravel/Cache/src/AsyncAwsDynamoDbStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function __construct(
6969
string $keyAttribute = 'key',
7070
string $valueAttribute = 'value',
7171
string $expirationAttribute = 'expires_at',
72-
string $prefix = ''
72+
string $prefix = '',
7373
) {
7474
$this->table = $table;
7575
$this->dynamoDb = $dynamo;

0 commit comments

Comments
 (0)