Skip to content

Commit 99684ac

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 0017a3a commit 99684ac

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
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.1.4
610

711
### Changed

src/Input/GetThingShadowRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class GetThingShadowRequest extends Input
3131
/**
3232
* @param array{
3333
* thingName?: string,
34-
* shadowName?: null|string,
34+
* shadowName?: string|null,
3535
* '@region'?: string|null,
3636
* } $input
3737
*/
@@ -45,7 +45,7 @@ public function __construct(array $input = [])
4545
/**
4646
* @param array{
4747
* thingName?: string,
48-
* shadowName?: null|string,
48+
* shadowName?: string|null,
4949
* '@region'?: string|null,
5050
* }|GetThingShadowRequest $input
5151
*/

src/Input/UpdateThingShadowRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ final class UpdateThingShadowRequest extends Input
4040
/**
4141
* @param array{
4242
* thingName?: string,
43-
* shadowName?: null|string,
43+
* shadowName?: string|null,
4444
* payload?: string,
4545
* '@region'?: string|null,
4646
* } $input
@@ -56,7 +56,7 @@ public function __construct(array $input = [])
5656
/**
5757
* @param array{
5858
* thingName?: string,
59-
* shadowName?: null|string,
59+
* shadowName?: string|null,
6060
* payload?: string,
6161
* '@region'?: string|null,
6262
* }|UpdateThingShadowRequest $input

src/IotDataClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class IotDataClient extends AbstractApi
3939
*
4040
* @param array{
4141
* thingName: string,
42-
* shadowName?: null|string,
42+
* shadowName?: string|null,
4343
* '@region'?: string|null,
4444
* }|GetThingShadowRequest $input
4545
*
@@ -84,7 +84,7 @@ public function getThingShadow($input): GetThingShadowResponse
8484
*
8585
* @param array{
8686
* thingName: string,
87-
* shadowName?: null|string,
87+
* shadowName?: string|null,
8888
* payload: string,
8989
* '@region'?: string|null,
9090
* }|UpdateThingShadowRequest $input

0 commit comments

Comments
 (0)