Skip to content

Commit bdb3304

Browse files
authored
Upgrade to PHP-CS-Fixer 3.17 (#1440)
Also add a rule to trim blank line inside `{}`, `[]` and `()`
1 parent 4ea0caa commit bdb3304

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/Unit/LambdaClientTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public function testAddLayerVersionPermission(): void
3434
'StatementId' => 'change me',
3535
'Action' => 'change me',
3636
'Principal' => 'change me',
37-
3837
]);
3938
$result = $client->AddLayerVersionPermission($input);
4039

@@ -48,7 +47,6 @@ public function testDeleteFunction(): void
4847

4948
$input = new DeleteFunctionRequest([
5049
'FunctionName' => 'change me',
51-
5250
]);
5351
$result = $client->DeleteFunction($input);
5452

@@ -62,7 +60,6 @@ public function testInvoke(): void
6260

6361
$input = new InvocationRequest([
6462
'FunctionName' => 'change me',
65-
6663
]);
6764
$result = $client->Invoke($input);
6865

@@ -75,7 +72,6 @@ public function testListFunctions(): void
7572
$client = new LambdaClient([], new NullProvider(), new MockHttpClient());
7673

7774
$input = new ListFunctionsRequest([
78-
7975
]);
8076
$result = $client->ListFunctions($input);
8177

@@ -88,9 +84,7 @@ public function testListLayerVersions(): void
8884
$client = new LambdaClient([], new NullProvider(), new MockHttpClient());
8985

9086
$input = new ListLayerVersionsRequest([
91-
9287
'LayerName' => 'change me',
93-
9488
]);
9589
$result = $client->ListLayerVersions($input);
9690

@@ -104,7 +98,6 @@ public function testListVersionsByFunction(): void
10498

10599
$input = new ListVersionsByFunctionRequest([
106100
'FunctionName' => 'change me',
107-
108101
]);
109102
$result = $client->ListVersionsByFunction($input);
110103

@@ -125,7 +118,6 @@ public function testPublishLayerVersion(): void
125118
'S3ObjectVersion' => 'change me',
126119
'ZipFile' => 'change me',
127120
]),
128-
129121
]);
130122
$result = $client->PublishLayerVersion($input);
131123

0 commit comments

Comments
 (0)