Skip to content

Commit f5bf7a9

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

File tree

5 files changed

+27
-23
lines changed

5 files changed

+27
-23
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
## 1.9.0
610

711
### Added

src/EventBridgeClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class EventBridgeClient extends AbstractApi
3333
*
3434
* @param array{
3535
* Entries: array<PutEventsRequestEntry|array>,
36-
* EndpointId?: null|string,
36+
* EndpointId?: string|null,
3737
* '@region'?: string|null,
3838
* }|PutEventsRequest $input
3939
*

src/Input/PutEventsRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class PutEventsRequest extends Input
3333
/**
3434
* @param array{
3535
* Entries?: array<PutEventsRequestEntry|array>,
36-
* EndpointId?: null|string,
36+
* EndpointId?: string|null,
3737
* '@region'?: string|null,
3838
* } $input
3939
*/
@@ -47,7 +47,7 @@ public function __construct(array $input = [])
4747
/**
4848
* @param array{
4949
* Entries?: array<PutEventsRequestEntry|array>,
50-
* EndpointId?: null|string,
50+
* EndpointId?: string|null,
5151
* '@region'?: string|null,
5252
* }|PutEventsRequest $input
5353
*/

src/ValueObject/PutEventsRequestEntry.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ final class PutEventsRequestEntry
8989

9090
/**
9191
* @param array{
92-
* Time?: null|\DateTimeImmutable,
93-
* Source?: null|string,
94-
* Resources?: null|string[],
95-
* DetailType?: null|string,
96-
* Detail?: null|string,
97-
* EventBusName?: null|string,
98-
* TraceHeader?: null|string,
92+
* Time?: \DateTimeImmutable|null,
93+
* Source?: string|null,
94+
* Resources?: string[]|null,
95+
* DetailType?: string|null,
96+
* Detail?: string|null,
97+
* EventBusName?: string|null,
98+
* TraceHeader?: string|null,
9999
* } $input
100100
*/
101101
public function __construct(array $input)
@@ -111,13 +111,13 @@ public function __construct(array $input)
111111

112112
/**
113113
* @param array{
114-
* Time?: null|\DateTimeImmutable,
115-
* Source?: null|string,
116-
* Resources?: null|string[],
117-
* DetailType?: null|string,
118-
* Detail?: null|string,
119-
* EventBusName?: null|string,
120-
* TraceHeader?: null|string,
114+
* Time?: \DateTimeImmutable|null,
115+
* Source?: string|null,
116+
* Resources?: string[]|null,
117+
* DetailType?: string|null,
118+
* Detail?: string|null,
119+
* EventBusName?: string|null,
120+
* TraceHeader?: string|null,
121121
* }|PutEventsRequestEntry $input
122122
*/
123123
public static function create($input): self

src/ValueObject/PutEventsResultEntry.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ final class PutEventsResultEntry
7474

7575
/**
7676
* @param array{
77-
* EventId?: null|string,
78-
* ErrorCode?: null|string,
79-
* ErrorMessage?: null|string,
77+
* EventId?: string|null,
78+
* ErrorCode?: string|null,
79+
* ErrorMessage?: string|null,
8080
* } $input
8181
*/
8282
public function __construct(array $input)
@@ -88,9 +88,9 @@ public function __construct(array $input)
8888

8989
/**
9090
* @param array{
91-
* EventId?: null|string,
92-
* ErrorCode?: null|string,
93-
* ErrorMessage?: null|string,
91+
* EventId?: string|null,
92+
* ErrorCode?: string|null,
93+
* ErrorMessage?: string|null,
9494
* }|PutEventsResultEntry $input
9595
*/
9696
public static function create($input): self

0 commit comments

Comments
 (0)