Skip to content

Commit a4f3cd1

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent da90bff commit a4f3cd1

14 files changed

+85
-81
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
## 2.1.2
610

711
### Changed

src/Input/PrepareQueryRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ final class PrepareQueryRequest extends Input
3030
/**
3131
* @param array{
3232
* QueryString?: string,
33-
* ValidateOnly?: null|bool,
33+
* ValidateOnly?: bool|null,
3434
* '@region'?: string|null,
3535
* } $input
3636
*/
@@ -44,7 +44,7 @@ public function __construct(array $input = [])
4444
/**
4545
* @param array{
4646
* QueryString?: string,
47-
* ValidateOnly?: null|bool,
47+
* ValidateOnly?: bool|null,
4848
* '@region'?: string|null,
4949
* }|PrepareQueryRequest $input
5050
*/

src/Input/QueryRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ final class QueryRequest extends Input
9292
/**
9393
* @param array{
9494
* QueryString?: string,
95-
* ClientToken?: null|string,
96-
* NextToken?: null|string,
97-
* MaxRows?: null|int,
98-
* QueryInsights?: null|QueryInsights|array,
95+
* ClientToken?: string|null,
96+
* NextToken?: string|null,
97+
* MaxRows?: int|null,
98+
* QueryInsights?: QueryInsights|array|null,
9999
* '@region'?: string|null,
100100
* } $input
101101
*/
@@ -112,10 +112,10 @@ public function __construct(array $input = [])
112112
/**
113113
* @param array{
114114
* QueryString?: string,
115-
* ClientToken?: null|string,
116-
* NextToken?: null|string,
117-
* MaxRows?: null|int,
118-
* QueryInsights?: null|QueryInsights|array,
115+
* ClientToken?: string|null,
116+
* NextToken?: string|null,
117+
* MaxRows?: int|null,
118+
* QueryInsights?: QueryInsights|array|null,
119119
* '@region'?: string|null,
120120
* }|QueryRequest $input
121121
*/

src/TimestreamQueryClient.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function describeEndpoints($input = []): DescribeEndpointsResponse
111111
*
112112
* @param array{
113113
* QueryString: string,
114-
* ValidateOnly?: null|bool,
114+
* ValidateOnly?: bool|null,
115115
* '@region'?: string|null,
116116
* }|PrepareQueryRequest $input
117117
*
@@ -169,10 +169,10 @@ public function prepareQuery($input): PrepareQueryResponse
169169
*
170170
* @param array{
171171
* QueryString: string,
172-
* ClientToken?: null|string,
173-
* NextToken?: null|string,
174-
* MaxRows?: null|int,
175-
* QueryInsights?: null|QueryInsights|array,
172+
* ClientToken?: string|null,
173+
* NextToken?: string|null,
174+
* MaxRows?: int|null,
175+
* QueryInsights?: QueryInsights|array|null,
176176
* '@region'?: string|null,
177177
* }|QueryRequest $input
178178
*

src/ValueObject/ColumnInfo.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final class ColumnInfo
2727

2828
/**
2929
* @param array{
30-
* Name?: null|string,
30+
* Name?: string|null,
3131
* Type: Type|array,
3232
* } $input
3333
*/
@@ -39,7 +39,7 @@ public function __construct(array $input)
3939

4040
/**
4141
* @param array{
42-
* Name?: null|string,
42+
* Name?: string|null,
4343
* Type: Type|array,
4444
* }|ColumnInfo $input
4545
*/

src/ValueObject/Datum.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ final class Datum
4444

4545
/**
4646
* @param array{
47-
* ScalarValue?: null|string,
48-
* TimeSeriesValue?: null|array<TimeSeriesDataPoint|array>,
49-
* ArrayValue?: null|array<Datum|array>,
50-
* RowValue?: null|Row|array,
51-
* NullValue?: null|bool,
47+
* ScalarValue?: string|null,
48+
* TimeSeriesValue?: array<TimeSeriesDataPoint|array>|null,
49+
* ArrayValue?: array<Datum|array>|null,
50+
* RowValue?: Row|array|null,
51+
* NullValue?: bool|null,
5252
* } $input
5353
*/
5454
public function __construct(array $input)
@@ -62,11 +62,11 @@ public function __construct(array $input)
6262

6363
/**
6464
* @param array{
65-
* ScalarValue?: null|string,
66-
* TimeSeriesValue?: null|array<TimeSeriesDataPoint|array>,
67-
* ArrayValue?: null|array<Datum|array>,
68-
* RowValue?: null|Row|array,
69-
* NullValue?: null|bool,
65+
* ScalarValue?: string|null,
66+
* TimeSeriesValue?: array<TimeSeriesDataPoint|array>|null,
67+
* ArrayValue?: array<Datum|array>|null,
68+
* RowValue?: Row|array|null,
69+
* NullValue?: bool|null,
7070
* }|Datum $input
7171
*/
7272
public static function create($input): self

src/ValueObject/QueryInsightsResponse.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ final class QueryInsightsResponse
7474

7575
/**
7676
* @param array{
77-
* QuerySpatialCoverage?: null|QuerySpatialCoverage|array,
78-
* QueryTemporalRange?: null|QueryTemporalRange|array,
79-
* QueryTableCount?: null|int,
80-
* OutputRows?: null|int,
81-
* OutputBytes?: null|int,
82-
* UnloadPartitionCount?: null|int,
83-
* UnloadWrittenRows?: null|int,
84-
* UnloadWrittenBytes?: null|int,
77+
* QuerySpatialCoverage?: QuerySpatialCoverage|array|null,
78+
* QueryTemporalRange?: QueryTemporalRange|array|null,
79+
* QueryTableCount?: int|null,
80+
* OutputRows?: int|null,
81+
* OutputBytes?: int|null,
82+
* UnloadPartitionCount?: int|null,
83+
* UnloadWrittenRows?: int|null,
84+
* UnloadWrittenBytes?: int|null,
8585
* } $input
8686
*/
8787
public function __construct(array $input)
@@ -98,14 +98,14 @@ public function __construct(array $input)
9898

9999
/**
100100
* @param array{
101-
* QuerySpatialCoverage?: null|QuerySpatialCoverage|array,
102-
* QueryTemporalRange?: null|QueryTemporalRange|array,
103-
* QueryTableCount?: null|int,
104-
* OutputRows?: null|int,
105-
* OutputBytes?: null|int,
106-
* UnloadPartitionCount?: null|int,
107-
* UnloadWrittenRows?: null|int,
108-
* UnloadWrittenBytes?: null|int,
101+
* QuerySpatialCoverage?: QuerySpatialCoverage|array|null,
102+
* QueryTemporalRange?: QueryTemporalRange|array|null,
103+
* QueryTableCount?: int|null,
104+
* OutputRows?: int|null,
105+
* OutputBytes?: int|null,
106+
* UnloadPartitionCount?: int|null,
107+
* UnloadWrittenRows?: int|null,
108+
* UnloadWrittenBytes?: int|null,
109109
* }|QueryInsightsResponse $input
110110
*/
111111
public static function create($input): self

src/ValueObject/QuerySpatialCoverage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ final class QuerySpatialCoverage
2929

3030
/**
3131
* @param array{
32-
* Max?: null|QuerySpatialCoverageMax|array,
32+
* Max?: QuerySpatialCoverageMax|array|null,
3333
* } $input
3434
*/
3535
public function __construct(array $input)
@@ -39,7 +39,7 @@ public function __construct(array $input)
3939

4040
/**
4141
* @param array{
42-
* Max?: null|QuerySpatialCoverageMax|array,
42+
* Max?: QuerySpatialCoverageMax|array|null,
4343
* }|QuerySpatialCoverage $input
4444
*/
4545
public static function create($input): self

src/ValueObject/QuerySpatialCoverageMax.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ final class QuerySpatialCoverageMax
3333

3434
/**
3535
* @param array{
36-
* Value?: null|float,
37-
* TableArn?: null|string,
38-
* PartitionKey?: null|string[],
36+
* Value?: float|null,
37+
* TableArn?: string|null,
38+
* PartitionKey?: string[]|null,
3939
* } $input
4040
*/
4141
public function __construct(array $input)
@@ -47,9 +47,9 @@ public function __construct(array $input)
4747

4848
/**
4949
* @param array{
50-
* Value?: null|float,
51-
* TableArn?: null|string,
52-
* PartitionKey?: null|string[],
50+
* Value?: float|null,
51+
* TableArn?: string|null,
52+
* PartitionKey?: string[]|null,
5353
* }|QuerySpatialCoverageMax $input
5454
*/
5555
public static function create($input): self

src/ValueObject/QueryStatus.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ final class QueryStatus
3333

3434
/**
3535
* @param array{
36-
* ProgressPercentage?: null|float,
37-
* CumulativeBytesScanned?: null|int,
38-
* CumulativeBytesMetered?: null|int,
36+
* ProgressPercentage?: float|null,
37+
* CumulativeBytesScanned?: int|null,
38+
* CumulativeBytesMetered?: int|null,
3939
* } $input
4040
*/
4141
public function __construct(array $input)
@@ -47,9 +47,9 @@ public function __construct(array $input)
4747

4848
/**
4949
* @param array{
50-
* ProgressPercentage?: null|float,
51-
* CumulativeBytesScanned?: null|int,
52-
* CumulativeBytesMetered?: null|int,
50+
* ProgressPercentage?: float|null,
51+
* CumulativeBytesScanned?: int|null,
52+
* CumulativeBytesMetered?: int|null,
5353
* }|QueryStatus $input
5454
*/
5555
public static function create($input): self

0 commit comments

Comments
 (0)