Skip to content

Commit b556822

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

39 files changed

+268
-264
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.3.0
610

711
### Added

src/Input/AddTagsToStreamInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ final class AddTagsToStreamInput extends Input
3838

3939
/**
4040
* @param array{
41-
* StreamName?: null|string,
41+
* StreamName?: string|null,
4242
* Tags?: array<string, string>,
43-
* StreamARN?: null|string,
43+
* StreamARN?: string|null,
4444
* '@region'?: string|null,
4545
* } $input
4646
*/
@@ -54,9 +54,9 @@ public function __construct(array $input = [])
5454

5555
/**
5656
* @param array{
57-
* StreamName?: null|string,
57+
* StreamName?: string|null,
5858
* Tags?: array<string, string>,
59-
* StreamARN?: null|string,
59+
* StreamARN?: string|null,
6060
* '@region'?: string|null,
6161
* }|AddTagsToStreamInput $input
6262
*/

src/Input/CreateStreamInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ final class CreateStreamInput extends Input
5151
/**
5252
* @param array{
5353
* StreamName?: string,
54-
* ShardCount?: null|int,
55-
* StreamModeDetails?: null|StreamModeDetails|array,
56-
* Tags?: null|array<string, string>,
54+
* ShardCount?: int|null,
55+
* StreamModeDetails?: StreamModeDetails|array|null,
56+
* Tags?: array<string, string>|null,
5757
* '@region'?: string|null,
5858
* } $input
5959
*/
@@ -69,9 +69,9 @@ public function __construct(array $input = [])
6969
/**
7070
* @param array{
7171
* StreamName?: string,
72-
* ShardCount?: null|int,
73-
* StreamModeDetails?: null|StreamModeDetails|array,
74-
* Tags?: null|array<string, string>,
72+
* ShardCount?: int|null,
73+
* StreamModeDetails?: StreamModeDetails|array|null,
74+
* Tags?: array<string, string>|null,
7575
* '@region'?: string|null,
7676
* }|CreateStreamInput $input
7777
*/

src/Input/DecreaseStreamRetentionPeriodInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ final class DecreaseStreamRetentionPeriodInput extends Input
3737

3838
/**
3939
* @param array{
40-
* StreamName?: null|string,
40+
* StreamName?: string|null,
4141
* RetentionPeriodHours?: int,
42-
* StreamARN?: null|string,
42+
* StreamARN?: string|null,
4343
* '@region'?: string|null,
4444
* } $input
4545
*/
@@ -53,9 +53,9 @@ public function __construct(array $input = [])
5353

5454
/**
5555
* @param array{
56-
* StreamName?: null|string,
56+
* StreamName?: string|null,
5757
* RetentionPeriodHours?: int,
58-
* StreamARN?: null|string,
58+
* StreamARN?: string|null,
5959
* '@region'?: string|null,
6060
* }|DecreaseStreamRetentionPeriodInput $input
6161
*/

src/Input/DeleteStreamInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ final class DeleteStreamInput extends Input
3535

3636
/**
3737
* @param array{
38-
* StreamName?: null|string,
39-
* EnforceConsumerDeletion?: null|bool,
40-
* StreamARN?: null|string,
38+
* StreamName?: string|null,
39+
* EnforceConsumerDeletion?: bool|null,
40+
* StreamARN?: string|null,
4141
* '@region'?: string|null,
4242
* } $input
4343
*/
@@ -51,9 +51,9 @@ public function __construct(array $input = [])
5151

5252
/**
5353
* @param array{
54-
* StreamName?: null|string,
55-
* EnforceConsumerDeletion?: null|bool,
56-
* StreamARN?: null|string,
54+
* StreamName?: string|null,
55+
* EnforceConsumerDeletion?: bool|null,
56+
* StreamARN?: string|null,
5757
* '@region'?: string|null,
5858
* }|DeleteStreamInput $input
5959
*/

src/Input/DeregisterStreamConsumerInput.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ final class DeregisterStreamConsumerInput extends Input
3636

3737
/**
3838
* @param array{
39-
* StreamARN?: null|string,
40-
* ConsumerName?: null|string,
41-
* ConsumerARN?: null|string,
39+
* StreamARN?: string|null,
40+
* ConsumerName?: string|null,
41+
* ConsumerARN?: string|null,
4242
* '@region'?: string|null,
4343
* } $input
4444
*/
@@ -52,9 +52,9 @@ public function __construct(array $input = [])
5252

5353
/**
5454
* @param array{
55-
* StreamARN?: null|string,
56-
* ConsumerName?: null|string,
57-
* ConsumerARN?: null|string,
55+
* StreamARN?: string|null,
56+
* ConsumerName?: string|null,
57+
* ConsumerARN?: string|null,
5858
* '@region'?: string|null,
5959
* }|DeregisterStreamConsumerInput $input
6060
*/

src/Input/DescribeStreamConsumerInput.php

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

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

5151
/**
5252
* @param array{
53-
* StreamARN?: null|string,
54-
* ConsumerName?: null|string,
55-
* ConsumerARN?: null|string,
53+
* StreamARN?: string|null,
54+
* ConsumerName?: string|null,
55+
* ConsumerARN?: string|null,
5656
* '@region'?: string|null,
5757
* }|DescribeStreamConsumerInput $input
5858
*/

src/Input/DescribeStreamInput.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ final class DescribeStreamInput extends Input
4848

4949
/**
5050
* @param array{
51-
* StreamName?: null|string,
52-
* Limit?: null|int,
53-
* ExclusiveStartShardId?: null|string,
54-
* StreamARN?: null|string,
51+
* StreamName?: string|null,
52+
* Limit?: int|null,
53+
* ExclusiveStartShardId?: string|null,
54+
* StreamARN?: string|null,
5555
* '@region'?: string|null,
5656
* } $input
5757
*/
@@ -66,10 +66,10 @@ public function __construct(array $input = [])
6666

6767
/**
6868
* @param array{
69-
* StreamName?: null|string,
70-
* Limit?: null|int,
71-
* ExclusiveStartShardId?: null|string,
72-
* StreamARN?: null|string,
69+
* StreamName?: string|null,
70+
* Limit?: int|null,
71+
* ExclusiveStartShardId?: string|null,
72+
* StreamARN?: string|null,
7373
* '@region'?: string|null,
7474
* }|DescribeStreamInput $input
7575
*/

src/Input/DescribeStreamSummaryInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ final class DescribeStreamSummaryInput extends Input
2424

2525
/**
2626
* @param array{
27-
* StreamName?: null|string,
28-
* StreamARN?: null|string,
27+
* StreamName?: string|null,
28+
* StreamARN?: string|null,
2929
* '@region'?: string|null,
3030
* } $input
3131
*/
@@ -38,8 +38,8 @@ public function __construct(array $input = [])
3838

3939
/**
4040
* @param array{
41-
* StreamName?: null|string,
42-
* StreamARN?: null|string,
41+
* StreamName?: string|null,
42+
* StreamARN?: string|null,
4343
* '@region'?: string|null,
4444
* }|DescribeStreamSummaryInput $input
4545
*/

src/Input/DisableEnhancedMonitoringInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ final class DisableEnhancedMonitoringInput extends Input
5454

5555
/**
5656
* @param array{
57-
* StreamName?: null|string,
57+
* StreamName?: string|null,
5858
* ShardLevelMetrics?: array<MetricsName::*>,
59-
* StreamARN?: null|string,
59+
* StreamARN?: string|null,
6060
* '@region'?: string|null,
6161
* } $input
6262
*/
@@ -70,9 +70,9 @@ public function __construct(array $input = [])
7070

7171
/**
7272
* @param array{
73-
* StreamName?: null|string,
73+
* StreamName?: string|null,
7474
* ShardLevelMetrics?: array<MetricsName::*>,
75-
* StreamARN?: null|string,
75+
* StreamARN?: string|null,
7676
* '@region'?: string|null,
7777
* }|DisableEnhancedMonitoringInput $input
7878
*/

0 commit comments

Comments
 (0)