Skip to content

Commit c3d966b

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

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.php-cs-fixer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
'short_scalar_cast' => true,
6464
'single_trait_insert_per_statement' => true,
6565
'ternary_to_null_coalescing' => true,
66+
'trailing_comma_in_multiline' => false,
6667
'visibility_required' => true,
6768
])
6869
->setFinder($finder)

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/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/tests/Unit/AbstractApiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function getEndpointMetadata(?string $region): array
8787

8888
protected function discoverEndpoints(?string $region): array
8989
{
90-
return [new class() implements EndpointInterface {
90+
return [new class implements EndpointInterface {
9191
public function getAddress(): string
9292
{
9393
return 'https://foobar.discovered.amazonaws.com';

0 commit comments

Comments
 (0)