Skip to content

Commit 4588f74

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 232c8ac commit 4588f74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+347
-343
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+
- Apply no CodingStandard from latest php-cs-fixer.
8+
59
## 3.4.0
610

711
### Added

src/AthenaClient.php

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public function getCalculationExecutionStatus($input): GetCalculationExecutionSt
126126
*
127127
* @param array{
128128
* Name: string,
129-
* WorkGroup?: null|string,
129+
* WorkGroup?: string|null,
130130
* '@region'?: string|null,
131131
* }|GetDataCatalogInput $input
132132
*
@@ -153,7 +153,7 @@ public function getDataCatalog($input): GetDataCatalogOutput
153153
* @param array{
154154
* CatalogName: string,
155155
* DatabaseName: string,
156-
* WorkGroup?: null|string,
156+
* WorkGroup?: string|null,
157157
* '@region'?: string|null,
158158
* }|GetDatabaseInput $input
159159
*
@@ -245,9 +245,9 @@ public function getQueryExecution($input): GetQueryExecutionOutput
245245
*
246246
* @param array{
247247
* QueryExecutionId: string,
248-
* NextToken?: null|string,
249-
* MaxResults?: null|int,
250-
* QueryResultType?: null|QueryResultType::*,
248+
* NextToken?: string|null,
249+
* MaxResults?: int|null,
250+
* QueryResultType?: QueryResultType::*|null,
251251
* '@region'?: string|null,
252252
* }|GetQueryResultsInput $input
253253
*
@@ -331,7 +331,7 @@ public function getSessionStatus($input): GetSessionStatusResponse
331331
* CatalogName: string,
332332
* DatabaseName: string,
333333
* TableName: string,
334-
* WorkGroup?: null|string,
334+
* WorkGroup?: string|null,
335335
* '@region'?: string|null,
336336
* }|GetTableMetadataInput $input
337337
*
@@ -384,9 +384,9 @@ public function getWorkGroup($input): GetWorkGroupOutput
384384
*
385385
* @param array{
386386
* CatalogName: string,
387-
* NextToken?: null|string,
388-
* MaxResults?: null|int,
389-
* WorkGroup?: null|string,
387+
* NextToken?: string|null,
388+
* MaxResults?: int|null,
389+
* WorkGroup?: string|null,
390390
* '@region'?: string|null,
391391
* }|ListDatabasesInput $input
392392
*
@@ -415,9 +415,9 @@ public function listDatabases($input): ListDatabasesOutput
415415
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-athena-2017-05-18.html#listnamedqueries
416416
*
417417
* @param array{
418-
* NextToken?: null|string,
419-
* MaxResults?: null|int,
420-
* WorkGroup?: null|string,
418+
* NextToken?: string|null,
419+
* MaxResults?: int|null,
420+
* WorkGroup?: string|null,
421421
* '@region'?: string|null,
422422
* }|ListNamedQueriesInput $input
423423
*
@@ -444,9 +444,9 @@ public function listNamedQueries($input = []): ListNamedQueriesOutput
444444
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-athena-2017-05-18.html#listqueryexecutions
445445
*
446446
* @param array{
447-
* NextToken?: null|string,
448-
* MaxResults?: null|int,
449-
* WorkGroup?: null|string,
447+
* NextToken?: string|null,
448+
* MaxResults?: int|null,
449+
* WorkGroup?: string|null,
450450
* '@region'?: string|null,
451451
* }|ListQueryExecutionsInput $input
452452
*
@@ -473,10 +473,10 @@ public function listQueryExecutions($input = []): ListQueryExecutionsOutput
473473
* @param array{
474474
* CatalogName: string,
475475
* DatabaseName: string,
476-
* Expression?: null|string,
477-
* NextToken?: null|string,
478-
* MaxResults?: null|int,
479-
* WorkGroup?: null|string,
476+
* Expression?: string|null,
477+
* NextToken?: string|null,
478+
* MaxResults?: int|null,
479+
* WorkGroup?: string|null,
480480
* '@region'?: string|null,
481481
* }|ListTableMetadataInput $input
482482
*
@@ -509,10 +509,10 @@ public function listTableMetadata($input): ListTableMetadataOutput
509509
*
510510
* @param array{
511511
* SessionId: string,
512-
* Description?: null|string,
513-
* CalculationConfiguration?: null|CalculationConfiguration|array,
514-
* CodeBlock?: null|string,
515-
* ClientRequestToken?: null|string,
512+
* Description?: string|null,
513+
* CalculationConfiguration?: CalculationConfiguration|array|null,
514+
* CodeBlock?: string|null,
515+
* ClientRequestToken?: string|null,
516516
* '@region'?: string|null,
517517
* }|StartCalculationExecutionRequest $input
518518
*
@@ -545,12 +545,12 @@ public function startCalculationExecution($input): StartCalculationExecutionResp
545545
*
546546
* @param array{
547547
* QueryString: string,
548-
* ClientRequestToken?: null|string,
549-
* QueryExecutionContext?: null|QueryExecutionContext|array,
550-
* ResultConfiguration?: null|ResultConfiguration|array,
551-
* WorkGroup?: null|string,
552-
* ExecutionParameters?: null|string[],
553-
* ResultReuseConfiguration?: null|ResultReuseConfiguration|array,
548+
* ClientRequestToken?: string|null,
549+
* QueryExecutionContext?: QueryExecutionContext|array|null,
550+
* ResultConfiguration?: ResultConfiguration|array|null,
551+
* WorkGroup?: string|null,
552+
* ExecutionParameters?: string[]|null,
553+
* ResultReuseConfiguration?: ResultReuseConfiguration|array|null,
554554
* '@region'?: string|null,
555555
* }|StartQueryExecutionInput $input
556556
*
@@ -577,12 +577,12 @@ public function startQueryExecution($input): StartQueryExecutionOutput
577577
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-athena-2017-05-18.html#startsession
578578
*
579579
* @param array{
580-
* Description?: null|string,
580+
* Description?: string|null,
581581
* WorkGroup: string,
582582
* EngineConfiguration: EngineConfiguration|array,
583-
* NotebookVersion?: null|string,
584-
* SessionIdleTimeoutInMinutes?: null|int,
585-
* ClientRequestToken?: null|string,
583+
* NotebookVersion?: string|null,
584+
* SessionIdleTimeoutInMinutes?: int|null,
585+
* ClientRequestToken?: string|null,
586586
* '@region'?: string|null,
587587
* }|StartSessionRequest $input
588588
*

src/Input/GetDataCatalogInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class GetDataCatalogInput extends Input
2828
/**
2929
* @param array{
3030
* Name?: string,
31-
* WorkGroup?: null|string,
31+
* WorkGroup?: string|null,
3232
* '@region'?: string|null,
3333
* } $input
3434
*/
@@ -42,7 +42,7 @@ public function __construct(array $input = [])
4242
/**
4343
* @param array{
4444
* Name?: string,
45-
* WorkGroup?: null|string,
45+
* WorkGroup?: string|null,
4646
* '@region'?: string|null,
4747
* }|GetDataCatalogInput $input
4848
*/

src/Input/GetDatabaseInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ final class GetDatabaseInput extends Input
3939
* @param array{
4040
* CatalogName?: string,
4141
* DatabaseName?: string,
42-
* WorkGroup?: null|string,
42+
* WorkGroup?: string|null,
4343
* '@region'?: string|null,
4444
* } $input
4545
*/
@@ -55,7 +55,7 @@ public function __construct(array $input = [])
5555
* @param array{
5656
* CatalogName?: string,
5757
* DatabaseName?: string,
58-
* WorkGroup?: null|string,
58+
* WorkGroup?: string|null,
5959
* '@region'?: string|null,
6060
* }|GetDatabaseInput $input
6161
*/

src/Input/GetQueryResultsInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ final class GetQueryResultsInput extends Input
4747
/**
4848
* @param array{
4949
* QueryExecutionId?: string,
50-
* NextToken?: null|string,
51-
* MaxResults?: null|int,
52-
* QueryResultType?: null|QueryResultType::*,
50+
* NextToken?: string|null,
51+
* MaxResults?: int|null,
52+
* QueryResultType?: QueryResultType::*|null,
5353
* '@region'?: string|null,
5454
* } $input
5555
*/
@@ -65,9 +65,9 @@ public function __construct(array $input = [])
6565
/**
6666
* @param array{
6767
* QueryExecutionId?: string,
68-
* NextToken?: null|string,
69-
* MaxResults?: null|int,
70-
* QueryResultType?: null|QueryResultType::*,
68+
* NextToken?: string|null,
69+
* MaxResults?: int|null,
70+
* QueryResultType?: QueryResultType::*|null,
7171
* '@region'?: string|null,
7272
* }|GetQueryResultsInput $input
7373
*/

src/Input/GetTableMetadataInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ final class GetTableMetadataInput extends Input
4949
* CatalogName?: string,
5050
* DatabaseName?: string,
5151
* TableName?: string,
52-
* WorkGroup?: null|string,
52+
* WorkGroup?: string|null,
5353
* '@region'?: string|null,
5454
* } $input
5555
*/
@@ -67,7 +67,7 @@ public function __construct(array $input = [])
6767
* CatalogName?: string,
6868
* DatabaseName?: string,
6969
* TableName?: string,
70-
* WorkGroup?: null|string,
70+
* WorkGroup?: string|null,
7171
* '@region'?: string|null,
7272
* }|GetTableMetadataInput $input
7373
*/

src/Input/ListDatabasesInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ final class ListDatabasesInput extends Input
4545
/**
4646
* @param array{
4747
* CatalogName?: string,
48-
* NextToken?: null|string,
49-
* MaxResults?: null|int,
50-
* WorkGroup?: null|string,
48+
* NextToken?: string|null,
49+
* MaxResults?: int|null,
50+
* WorkGroup?: string|null,
5151
* '@region'?: string|null,
5252
* } $input
5353
*/
@@ -63,9 +63,9 @@ public function __construct(array $input = [])
6363
/**
6464
* @param array{
6565
* CatalogName?: string,
66-
* NextToken?: null|string,
67-
* MaxResults?: null|int,
68-
* WorkGroup?: null|string,
66+
* NextToken?: string|null,
67+
* MaxResults?: int|null,
68+
* WorkGroup?: string|null,
6969
* '@region'?: string|null,
7070
* }|ListDatabasesInput $input
7171
*/

src/Input/ListNamedQueriesInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ final class ListNamedQueriesInput extends Input
3434

3535
/**
3636
* @param array{
37-
* NextToken?: null|string,
38-
* MaxResults?: null|int,
39-
* WorkGroup?: null|string,
37+
* NextToken?: string|null,
38+
* MaxResults?: int|null,
39+
* WorkGroup?: string|null,
4040
* '@region'?: string|null,
4141
* } $input
4242
*/
@@ -50,9 +50,9 @@ public function __construct(array $input = [])
5050

5151
/**
5252
* @param array{
53-
* NextToken?: null|string,
54-
* MaxResults?: null|int,
55-
* WorkGroup?: null|string,
53+
* NextToken?: string|null,
54+
* MaxResults?: int|null,
55+
* WorkGroup?: string|null,
5656
* '@region'?: string|null,
5757
* }|ListNamedQueriesInput $input
5858
*/

src/Input/ListQueryExecutionsInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ final class ListQueryExecutionsInput extends Input
3434

3535
/**
3636
* @param array{
37-
* NextToken?: null|string,
38-
* MaxResults?: null|int,
39-
* WorkGroup?: null|string,
37+
* NextToken?: string|null,
38+
* MaxResults?: int|null,
39+
* WorkGroup?: string|null,
4040
* '@region'?: string|null,
4141
* } $input
4242
*/
@@ -50,9 +50,9 @@ public function __construct(array $input = [])
5050

5151
/**
5252
* @param array{
53-
* NextToken?: null|string,
54-
* MaxResults?: null|int,
55-
* WorkGroup?: null|string,
53+
* NextToken?: string|null,
54+
* MaxResults?: int|null,
55+
* WorkGroup?: string|null,
5656
* '@region'?: string|null,
5757
* }|ListQueryExecutionsInput $input
5858
*/

src/Input/ListTableMetadataInput.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ final class ListTableMetadataInput extends Input
6161
* @param array{
6262
* CatalogName?: string,
6363
* DatabaseName?: string,
64-
* Expression?: null|string,
65-
* NextToken?: null|string,
66-
* MaxResults?: null|int,
67-
* WorkGroup?: null|string,
64+
* Expression?: string|null,
65+
* NextToken?: string|null,
66+
* MaxResults?: int|null,
67+
* WorkGroup?: string|null,
6868
* '@region'?: string|null,
6969
* } $input
7070
*/
@@ -83,10 +83,10 @@ public function __construct(array $input = [])
8383
* @param array{
8484
* CatalogName?: string,
8585
* DatabaseName?: string,
86-
* Expression?: null|string,
87-
* NextToken?: null|string,
88-
* MaxResults?: null|int,
89-
* WorkGroup?: null|string,
86+
* Expression?: string|null,
87+
* NextToken?: string|null,
88+
* MaxResults?: int|null,
89+
* WorkGroup?: string|null,
9090
* '@region'?: string|null,
9191
* }|ListTableMetadataInput $input
9292
*/

0 commit comments

Comments
 (0)