Skip to content

Commit 038f952

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 914b81d commit 038f952

32 files changed

+305
-301
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.12.0
610

711
### Added

src/Input/AddLayerVersionPermissionRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ final class AddLayerVersionPermissionRequest extends Input
7878
* StatementId?: string,
7979
* Action?: string,
8080
* Principal?: string,
81-
* OrganizationId?: null|string,
82-
* RevisionId?: null|string,
81+
* OrganizationId?: string|null,
82+
* RevisionId?: string|null,
8383
* '@region'?: string|null,
8484
* } $input
8585
*/
@@ -102,8 +102,8 @@ public function __construct(array $input = [])
102102
* StatementId?: string,
103103
* Action?: string,
104104
* Principal?: string,
105-
* OrganizationId?: null|string,
106-
* RevisionId?: null|string,
105+
* OrganizationId?: string|null,
106+
* RevisionId?: string|null,
107107
* '@region'?: string|null,
108108
* }|AddLayerVersionPermissionRequest $input
109109
*/

src/Input/DeleteFunctionRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ final class DeleteFunctionRequest extends Input
3737
/**
3838
* @param array{
3939
* FunctionName?: string,
40-
* Qualifier?: null|string,
40+
* Qualifier?: string|null,
4141
* '@region'?: string|null,
4242
* } $input
4343
*/
@@ -51,7 +51,7 @@ public function __construct(array $input = [])
5151
/**
5252
* @param array{
5353
* FunctionName?: string,
54-
* Qualifier?: null|string,
54+
* Qualifier?: string|null,
5555
* '@region'?: string|null,
5656
* }|DeleteFunctionRequest $input
5757
*/

src/Input/GetFunctionConfigurationRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ final class GetFunctionConfigurationRequest extends Input
3737
/**
3838
* @param array{
3939
* FunctionName?: string,
40-
* Qualifier?: null|string,
40+
* Qualifier?: string|null,
4141
* '@region'?: string|null,
4242
* } $input
4343
*/
@@ -51,7 +51,7 @@ public function __construct(array $input = [])
5151
/**
5252
* @param array{
5353
* FunctionName?: string,
54-
* Qualifier?: null|string,
54+
* Qualifier?: string|null,
5555
* '@region'?: string|null,
5656
* }|GetFunctionConfigurationRequest $input
5757
*/

src/Input/InvocationRequest.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ final class InvocationRequest extends Input
7777
/**
7878
* @param array{
7979
* FunctionName?: string,
80-
* InvocationType?: null|InvocationType::*,
81-
* LogType?: null|LogType::*,
82-
* ClientContext?: null|string,
83-
* Payload?: null|string,
84-
* Qualifier?: null|string,
80+
* InvocationType?: InvocationType::*|null,
81+
* LogType?: LogType::*|null,
82+
* ClientContext?: string|null,
83+
* Payload?: string|null,
84+
* Qualifier?: string|null,
8585
* '@region'?: string|null,
8686
* } $input
8787
*/
@@ -99,11 +99,11 @@ public function __construct(array $input = [])
9999
/**
100100
* @param array{
101101
* FunctionName?: string,
102-
* InvocationType?: null|InvocationType::*,
103-
* LogType?: null|LogType::*,
104-
* ClientContext?: null|string,
105-
* Payload?: null|string,
106-
* Qualifier?: null|string,
102+
* InvocationType?: InvocationType::*|null,
103+
* LogType?: LogType::*|null,
104+
* ClientContext?: string|null,
105+
* Payload?: string|null,
106+
* Qualifier?: string|null,
107107
* '@region'?: string|null,
108108
* }|InvocationRequest $input
109109
*/

src/Input/ListFunctionsRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ final class ListFunctionsRequest extends Input
4343

4444
/**
4545
* @param array{
46-
* MasterRegion?: null|string,
47-
* FunctionVersion?: null|FunctionVersion::*,
48-
* Marker?: null|string,
49-
* MaxItems?: null|int,
46+
* MasterRegion?: string|null,
47+
* FunctionVersion?: FunctionVersion::*|null,
48+
* Marker?: string|null,
49+
* MaxItems?: int|null,
5050
* '@region'?: string|null,
5151
* } $input
5252
*/
@@ -61,10 +61,10 @@ public function __construct(array $input = [])
6161

6262
/**
6363
* @param array{
64-
* MasterRegion?: null|string,
65-
* FunctionVersion?: null|FunctionVersion::*,
66-
* Marker?: null|string,
67-
* MaxItems?: null|int,
64+
* MasterRegion?: string|null,
65+
* FunctionVersion?: FunctionVersion::*|null,
66+
* Marker?: string|null,
67+
* MaxItems?: int|null,
6868
* '@region'?: string|null,
6969
* }|ListFunctionsRequest $input
7070
*/

src/Input/ListLayerVersionsRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ final class ListLayerVersionsRequest extends Input
5959

6060
/**
6161
* @param array{
62-
* CompatibleRuntime?: null|Runtime::*,
62+
* CompatibleRuntime?: Runtime::*|null,
6363
* LayerName?: string,
64-
* Marker?: null|string,
65-
* MaxItems?: null|int,
66-
* CompatibleArchitecture?: null|Architecture::*,
64+
* Marker?: string|null,
65+
* MaxItems?: int|null,
66+
* CompatibleArchitecture?: Architecture::*|null,
6767
* '@region'?: string|null,
6868
* } $input
6969
*/
@@ -79,11 +79,11 @@ public function __construct(array $input = [])
7979

8080
/**
8181
* @param array{
82-
* CompatibleRuntime?: null|Runtime::*,
82+
* CompatibleRuntime?: Runtime::*|null,
8383
* LayerName?: string,
84-
* Marker?: null|string,
85-
* MaxItems?: null|int,
86-
* CompatibleArchitecture?: null|Architecture::*,
84+
* Marker?: string|null,
85+
* MaxItems?: int|null,
86+
* CompatibleArchitecture?: Architecture::*|null,
8787
* '@region'?: string|null,
8888
* }|ListLayerVersionsRequest $input
8989
*/

src/Input/ListVersionsByFunctionRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ final class ListVersionsByFunctionRequest extends Input
4545
/**
4646
* @param array{
4747
* FunctionName?: string,
48-
* Marker?: null|string,
49-
* MaxItems?: null|int,
48+
* Marker?: string|null,
49+
* MaxItems?: int|null,
5050
* '@region'?: string|null,
5151
* } $input
5252
*/
@@ -61,8 +61,8 @@ public function __construct(array $input = [])
6161
/**
6262
* @param array{
6363
* FunctionName?: string,
64-
* Marker?: null|string,
65-
* MaxItems?: null|int,
64+
* Marker?: string|null,
65+
* MaxItems?: int|null,
6666
* '@region'?: string|null,
6767
* }|ListVersionsByFunctionRequest $input
6868
*/

src/Input/PublishLayerVersionRequest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ final class PublishLayerVersionRequest extends Input
7474
/**
7575
* @param array{
7676
* LayerName?: string,
77-
* Description?: null|string,
77+
* Description?: string|null,
7878
* Content?: LayerVersionContentInput|array,
79-
* CompatibleRuntimes?: null|array<Runtime::*>,
80-
* LicenseInfo?: null|string,
81-
* CompatibleArchitectures?: null|array<Architecture::*>,
79+
* CompatibleRuntimes?: array<Runtime::*>|null,
80+
* LicenseInfo?: string|null,
81+
* CompatibleArchitectures?: array<Architecture::*>|null,
8282
* '@region'?: string|null,
8383
* } $input
8484
*/
@@ -96,11 +96,11 @@ public function __construct(array $input = [])
9696
/**
9797
* @param array{
9898
* LayerName?: string,
99-
* Description?: null|string,
99+
* Description?: string|null,
100100
* Content?: LayerVersionContentInput|array,
101-
* CompatibleRuntimes?: null|array<Runtime::*>,
102-
* LicenseInfo?: null|string,
103-
* CompatibleArchitectures?: null|array<Architecture::*>,
101+
* CompatibleRuntimes?: array<Runtime::*>|null,
102+
* LicenseInfo?: string|null,
103+
* CompatibleArchitectures?: array<Architecture::*>|null,
104104
* '@region'?: string|null,
105105
* }|PublishLayerVersionRequest $input
106106
*/

src/Input/UpdateFunctionConfigurationRequest.php

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -224,24 +224,24 @@ final class UpdateFunctionConfigurationRequest extends Input
224224
/**
225225
* @param array{
226226
* FunctionName?: string,
227-
* Role?: null|string,
228-
* Handler?: null|string,
229-
* Description?: null|string,
230-
* Timeout?: null|int,
231-
* MemorySize?: null|int,
232-
* VpcConfig?: null|VpcConfig|array,
233-
* Environment?: null|Environment|array,
234-
* Runtime?: null|Runtime::*,
235-
* DeadLetterConfig?: null|DeadLetterConfig|array,
236-
* KMSKeyArn?: null|string,
237-
* TracingConfig?: null|TracingConfig|array,
238-
* RevisionId?: null|string,
239-
* Layers?: null|string[],
240-
* FileSystemConfigs?: null|array<FileSystemConfig|array>,
241-
* ImageConfig?: null|ImageConfig|array,
242-
* EphemeralStorage?: null|EphemeralStorage|array,
243-
* SnapStart?: null|SnapStart|array,
244-
* LoggingConfig?: null|LoggingConfig|array,
227+
* Role?: string|null,
228+
* Handler?: string|null,
229+
* Description?: string|null,
230+
* Timeout?: int|null,
231+
* MemorySize?: int|null,
232+
* VpcConfig?: VpcConfig|array|null,
233+
* Environment?: Environment|array|null,
234+
* Runtime?: Runtime::*|null,
235+
* DeadLetterConfig?: DeadLetterConfig|array|null,
236+
* KMSKeyArn?: string|null,
237+
* TracingConfig?: TracingConfig|array|null,
238+
* RevisionId?: string|null,
239+
* Layers?: string[]|null,
240+
* FileSystemConfigs?: array<FileSystemConfig|array>|null,
241+
* ImageConfig?: ImageConfig|array|null,
242+
* EphemeralStorage?: EphemeralStorage|array|null,
243+
* SnapStart?: SnapStart|array|null,
244+
* LoggingConfig?: LoggingConfig|array|null,
245245
* '@region'?: string|null,
246246
* } $input
247247
*/
@@ -272,24 +272,24 @@ public function __construct(array $input = [])
272272
/**
273273
* @param array{
274274
* FunctionName?: string,
275-
* Role?: null|string,
276-
* Handler?: null|string,
277-
* Description?: null|string,
278-
* Timeout?: null|int,
279-
* MemorySize?: null|int,
280-
* VpcConfig?: null|VpcConfig|array,
281-
* Environment?: null|Environment|array,
282-
* Runtime?: null|Runtime::*,
283-
* DeadLetterConfig?: null|DeadLetterConfig|array,
284-
* KMSKeyArn?: null|string,
285-
* TracingConfig?: null|TracingConfig|array,
286-
* RevisionId?: null|string,
287-
* Layers?: null|string[],
288-
* FileSystemConfigs?: null|array<FileSystemConfig|array>,
289-
* ImageConfig?: null|ImageConfig|array,
290-
* EphemeralStorage?: null|EphemeralStorage|array,
291-
* SnapStart?: null|SnapStart|array,
292-
* LoggingConfig?: null|LoggingConfig|array,
275+
* Role?: string|null,
276+
* Handler?: string|null,
277+
* Description?: string|null,
278+
* Timeout?: int|null,
279+
* MemorySize?: int|null,
280+
* VpcConfig?: VpcConfig|array|null,
281+
* Environment?: Environment|array|null,
282+
* Runtime?: Runtime::*|null,
283+
* DeadLetterConfig?: DeadLetterConfig|array|null,
284+
* KMSKeyArn?: string|null,
285+
* TracingConfig?: TracingConfig|array|null,
286+
* RevisionId?: string|null,
287+
* Layers?: string[]|null,
288+
* FileSystemConfigs?: array<FileSystemConfig|array>|null,
289+
* ImageConfig?: ImageConfig|array|null,
290+
* EphemeralStorage?: EphemeralStorage|array|null,
291+
* SnapStart?: SnapStart|array|null,
292+
* LoggingConfig?: LoggingConfig|array|null,
293293
* '@region'?: string|null,
294294
* }|UpdateFunctionConfigurationRequest $input
295295
*/

0 commit comments

Comments
 (0)