Skip to content

Commit 7c9cbe2

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

28 files changed

+348
-344
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.11.1
610

711
### Changed

src/CodeBuildClient.php

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -70,38 +70,38 @@ public function batchGetBuilds($input): BatchGetBuildsOutput
7070
*
7171
* @param array{
7272
* projectName: string,
73-
* secondarySourcesOverride?: null|array<ProjectSource|array>,
74-
* secondarySourcesVersionOverride?: null|array<ProjectSourceVersion|array>,
75-
* sourceVersion?: null|string,
76-
* artifactsOverride?: null|ProjectArtifacts|array,
77-
* secondaryArtifactsOverride?: null|array<ProjectArtifacts|array>,
78-
* environmentVariablesOverride?: null|array<EnvironmentVariable|array>,
79-
* sourceTypeOverride?: null|SourceType::*,
80-
* sourceLocationOverride?: null|string,
81-
* sourceAuthOverride?: null|SourceAuth|array,
82-
* gitCloneDepthOverride?: null|int,
83-
* gitSubmodulesConfigOverride?: null|GitSubmodulesConfig|array,
84-
* buildspecOverride?: null|string,
85-
* insecureSslOverride?: null|bool,
86-
* reportBuildStatusOverride?: null|bool,
87-
* buildStatusConfigOverride?: null|BuildStatusConfig|array,
88-
* environmentTypeOverride?: null|EnvironmentType::*,
89-
* imageOverride?: null|string,
90-
* computeTypeOverride?: null|ComputeType::*,
91-
* certificateOverride?: null|string,
92-
* cacheOverride?: null|ProjectCache|array,
93-
* serviceRoleOverride?: null|string,
94-
* privilegedModeOverride?: null|bool,
95-
* timeoutInMinutesOverride?: null|int,
96-
* queuedTimeoutInMinutesOverride?: null|int,
97-
* encryptionKeyOverride?: null|string,
98-
* idempotencyToken?: null|string,
99-
* logsConfigOverride?: null|LogsConfig|array,
100-
* registryCredentialOverride?: null|RegistryCredential|array,
101-
* imagePullCredentialsTypeOverride?: null|ImagePullCredentialsType::*,
102-
* debugSessionEnabled?: null|bool,
103-
* fleetOverride?: null|ProjectFleet|array,
104-
* autoRetryLimitOverride?: null|int,
73+
* secondarySourcesOverride?: array<ProjectSource|array>|null,
74+
* secondarySourcesVersionOverride?: array<ProjectSourceVersion|array>|null,
75+
* sourceVersion?: string|null,
76+
* artifactsOverride?: ProjectArtifacts|array|null,
77+
* secondaryArtifactsOverride?: array<ProjectArtifacts|array>|null,
78+
* environmentVariablesOverride?: array<EnvironmentVariable|array>|null,
79+
* sourceTypeOverride?: SourceType::*|null,
80+
* sourceLocationOverride?: string|null,
81+
* sourceAuthOverride?: SourceAuth|array|null,
82+
* gitCloneDepthOverride?: int|null,
83+
* gitSubmodulesConfigOverride?: GitSubmodulesConfig|array|null,
84+
* buildspecOverride?: string|null,
85+
* insecureSslOverride?: bool|null,
86+
* reportBuildStatusOverride?: bool|null,
87+
* buildStatusConfigOverride?: BuildStatusConfig|array|null,
88+
* environmentTypeOverride?: EnvironmentType::*|null,
89+
* imageOverride?: string|null,
90+
* computeTypeOverride?: ComputeType::*|null,
91+
* certificateOverride?: string|null,
92+
* cacheOverride?: ProjectCache|array|null,
93+
* serviceRoleOverride?: string|null,
94+
* privilegedModeOverride?: bool|null,
95+
* timeoutInMinutesOverride?: int|null,
96+
* queuedTimeoutInMinutesOverride?: int|null,
97+
* encryptionKeyOverride?: string|null,
98+
* idempotencyToken?: string|null,
99+
* logsConfigOverride?: LogsConfig|array|null,
100+
* registryCredentialOverride?: RegistryCredential|array|null,
101+
* imagePullCredentialsTypeOverride?: ImagePullCredentialsType::*|null,
102+
* debugSessionEnabled?: bool|null,
103+
* fleetOverride?: ProjectFleet|array|null,
104+
* autoRetryLimitOverride?: int|null,
105105
* '@region'?: string|null,
106106
* }|StartBuildInput $input
107107
*

src/Input/StartBuildInput.php

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -349,38 +349,38 @@ final class StartBuildInput extends Input
349349
/**
350350
* @param array{
351351
* projectName?: string,
352-
* secondarySourcesOverride?: null|array<ProjectSource|array>,
353-
* secondarySourcesVersionOverride?: null|array<ProjectSourceVersion|array>,
354-
* sourceVersion?: null|string,
355-
* artifactsOverride?: null|ProjectArtifacts|array,
356-
* secondaryArtifactsOverride?: null|array<ProjectArtifacts|array>,
357-
* environmentVariablesOverride?: null|array<EnvironmentVariable|array>,
358-
* sourceTypeOverride?: null|SourceType::*,
359-
* sourceLocationOverride?: null|string,
360-
* sourceAuthOverride?: null|SourceAuth|array,
361-
* gitCloneDepthOverride?: null|int,
362-
* gitSubmodulesConfigOverride?: null|GitSubmodulesConfig|array,
363-
* buildspecOverride?: null|string,
364-
* insecureSslOverride?: null|bool,
365-
* reportBuildStatusOverride?: null|bool,
366-
* buildStatusConfigOverride?: null|BuildStatusConfig|array,
367-
* environmentTypeOverride?: null|EnvironmentType::*,
368-
* imageOverride?: null|string,
369-
* computeTypeOverride?: null|ComputeType::*,
370-
* certificateOverride?: null|string,
371-
* cacheOverride?: null|ProjectCache|array,
372-
* serviceRoleOverride?: null|string,
373-
* privilegedModeOverride?: null|bool,
374-
* timeoutInMinutesOverride?: null|int,
375-
* queuedTimeoutInMinutesOverride?: null|int,
376-
* encryptionKeyOverride?: null|string,
377-
* idempotencyToken?: null|string,
378-
* logsConfigOverride?: null|LogsConfig|array,
379-
* registryCredentialOverride?: null|RegistryCredential|array,
380-
* imagePullCredentialsTypeOverride?: null|ImagePullCredentialsType::*,
381-
* debugSessionEnabled?: null|bool,
382-
* fleetOverride?: null|ProjectFleet|array,
383-
* autoRetryLimitOverride?: null|int,
352+
* secondarySourcesOverride?: array<ProjectSource|array>|null,
353+
* secondarySourcesVersionOverride?: array<ProjectSourceVersion|array>|null,
354+
* sourceVersion?: string|null,
355+
* artifactsOverride?: ProjectArtifacts|array|null,
356+
* secondaryArtifactsOverride?: array<ProjectArtifacts|array>|null,
357+
* environmentVariablesOverride?: array<EnvironmentVariable|array>|null,
358+
* sourceTypeOverride?: SourceType::*|null,
359+
* sourceLocationOverride?: string|null,
360+
* sourceAuthOverride?: SourceAuth|array|null,
361+
* gitCloneDepthOverride?: int|null,
362+
* gitSubmodulesConfigOverride?: GitSubmodulesConfig|array|null,
363+
* buildspecOverride?: string|null,
364+
* insecureSslOverride?: bool|null,
365+
* reportBuildStatusOverride?: bool|null,
366+
* buildStatusConfigOverride?: BuildStatusConfig|array|null,
367+
* environmentTypeOverride?: EnvironmentType::*|null,
368+
* imageOverride?: string|null,
369+
* computeTypeOverride?: ComputeType::*|null,
370+
* certificateOverride?: string|null,
371+
* cacheOverride?: ProjectCache|array|null,
372+
* serviceRoleOverride?: string|null,
373+
* privilegedModeOverride?: bool|null,
374+
* timeoutInMinutesOverride?: int|null,
375+
* queuedTimeoutInMinutesOverride?: int|null,
376+
* encryptionKeyOverride?: string|null,
377+
* idempotencyToken?: string|null,
378+
* logsConfigOverride?: LogsConfig|array|null,
379+
* registryCredentialOverride?: RegistryCredential|array|null,
380+
* imagePullCredentialsTypeOverride?: ImagePullCredentialsType::*|null,
381+
* debugSessionEnabled?: bool|null,
382+
* fleetOverride?: ProjectFleet|array|null,
383+
* autoRetryLimitOverride?: int|null,
384384
* '@region'?: string|null,
385385
* } $input
386386
*/
@@ -425,38 +425,38 @@ public function __construct(array $input = [])
425425
/**
426426
* @param array{
427427
* projectName?: string,
428-
* secondarySourcesOverride?: null|array<ProjectSource|array>,
429-
* secondarySourcesVersionOverride?: null|array<ProjectSourceVersion|array>,
430-
* sourceVersion?: null|string,
431-
* artifactsOverride?: null|ProjectArtifacts|array,
432-
* secondaryArtifactsOverride?: null|array<ProjectArtifacts|array>,
433-
* environmentVariablesOverride?: null|array<EnvironmentVariable|array>,
434-
* sourceTypeOverride?: null|SourceType::*,
435-
* sourceLocationOverride?: null|string,
436-
* sourceAuthOverride?: null|SourceAuth|array,
437-
* gitCloneDepthOverride?: null|int,
438-
* gitSubmodulesConfigOverride?: null|GitSubmodulesConfig|array,
439-
* buildspecOverride?: null|string,
440-
* insecureSslOverride?: null|bool,
441-
* reportBuildStatusOverride?: null|bool,
442-
* buildStatusConfigOverride?: null|BuildStatusConfig|array,
443-
* environmentTypeOverride?: null|EnvironmentType::*,
444-
* imageOverride?: null|string,
445-
* computeTypeOverride?: null|ComputeType::*,
446-
* certificateOverride?: null|string,
447-
* cacheOverride?: null|ProjectCache|array,
448-
* serviceRoleOverride?: null|string,
449-
* privilegedModeOverride?: null|bool,
450-
* timeoutInMinutesOverride?: null|int,
451-
* queuedTimeoutInMinutesOverride?: null|int,
452-
* encryptionKeyOverride?: null|string,
453-
* idempotencyToken?: null|string,
454-
* logsConfigOverride?: null|LogsConfig|array,
455-
* registryCredentialOverride?: null|RegistryCredential|array,
456-
* imagePullCredentialsTypeOverride?: null|ImagePullCredentialsType::*,
457-
* debugSessionEnabled?: null|bool,
458-
* fleetOverride?: null|ProjectFleet|array,
459-
* autoRetryLimitOverride?: null|int,
428+
* secondarySourcesOverride?: array<ProjectSource|array>|null,
429+
* secondarySourcesVersionOverride?: array<ProjectSourceVersion|array>|null,
430+
* sourceVersion?: string|null,
431+
* artifactsOverride?: ProjectArtifacts|array|null,
432+
* secondaryArtifactsOverride?: array<ProjectArtifacts|array>|null,
433+
* environmentVariablesOverride?: array<EnvironmentVariable|array>|null,
434+
* sourceTypeOverride?: SourceType::*|null,
435+
* sourceLocationOverride?: string|null,
436+
* sourceAuthOverride?: SourceAuth|array|null,
437+
* gitCloneDepthOverride?: int|null,
438+
* gitSubmodulesConfigOverride?: GitSubmodulesConfig|array|null,
439+
* buildspecOverride?: string|null,
440+
* insecureSslOverride?: bool|null,
441+
* reportBuildStatusOverride?: bool|null,
442+
* buildStatusConfigOverride?: BuildStatusConfig|array|null,
443+
* environmentTypeOverride?: EnvironmentType::*|null,
444+
* imageOverride?: string|null,
445+
* computeTypeOverride?: ComputeType::*|null,
446+
* certificateOverride?: string|null,
447+
* cacheOverride?: ProjectCache|array|null,
448+
* serviceRoleOverride?: string|null,
449+
* privilegedModeOverride?: bool|null,
450+
* timeoutInMinutesOverride?: int|null,
451+
* queuedTimeoutInMinutesOverride?: int|null,
452+
* encryptionKeyOverride?: string|null,
453+
* idempotencyToken?: string|null,
454+
* logsConfigOverride?: LogsConfig|array|null,
455+
* registryCredentialOverride?: RegistryCredential|array|null,
456+
* imagePullCredentialsTypeOverride?: ImagePullCredentialsType::*|null,
457+
* debugSessionEnabled?: bool|null,
458+
* fleetOverride?: ProjectFleet|array|null,
459+
* autoRetryLimitOverride?: int|null,
460460
* '@region'?: string|null,
461461
* }|StartBuildInput $input
462462
*/

src/ValueObject/AutoRetryConfig.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ final class AutoRetryConfig
4040

4141
/**
4242
* @param array{
43-
* autoRetryLimit?: null|int,
44-
* autoRetryNumber?: null|int,
45-
* nextAutoRetry?: null|string,
46-
* previousAutoRetry?: null|string,
43+
* autoRetryLimit?: int|null,
44+
* autoRetryNumber?: int|null,
45+
* nextAutoRetry?: string|null,
46+
* previousAutoRetry?: string|null,
4747
* } $input
4848
*/
4949
public function __construct(array $input)
@@ -56,10 +56,10 @@ public function __construct(array $input)
5656

5757
/**
5858
* @param array{
59-
* autoRetryLimit?: null|int,
60-
* autoRetryNumber?: null|int,
61-
* nextAutoRetry?: null|string,
62-
* previousAutoRetry?: null|string,
59+
* autoRetryLimit?: int|null,
60+
* autoRetryNumber?: int|null,
61+
* nextAutoRetry?: string|null,
62+
* previousAutoRetry?: string|null,
6363
* }|AutoRetryConfig $input
6464
*/
6565
public static function create($input): self

src/ValueObject/Build.php

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -291,39 +291,39 @@ final class Build
291291

292292
/**
293293
* @param array{
294-
* id?: null|string,
295-
* arn?: null|string,
296-
* buildNumber?: null|int,
297-
* startTime?: null|\DateTimeImmutable,
298-
* endTime?: null|\DateTimeImmutable,
299-
* currentPhase?: null|string,
300-
* buildStatus?: null|StatusType::*,
301-
* sourceVersion?: null|string,
302-
* resolvedSourceVersion?: null|string,
303-
* projectName?: null|string,
304-
* phases?: null|array<BuildPhase|array>,
305-
* source?: null|ProjectSource|array,
306-
* secondarySources?: null|array<ProjectSource|array>,
307-
* secondarySourceVersions?: null|array<ProjectSourceVersion|array>,
308-
* artifacts?: null|BuildArtifacts|array,
309-
* secondaryArtifacts?: null|array<BuildArtifacts|array>,
310-
* cache?: null|ProjectCache|array,
311-
* environment?: null|ProjectEnvironment|array,
312-
* serviceRole?: null|string,
313-
* logs?: null|LogsLocation|array,
314-
* timeoutInMinutes?: null|int,
315-
* queuedTimeoutInMinutes?: null|int,
316-
* buildComplete?: null|bool,
317-
* initiator?: null|string,
318-
* vpcConfig?: null|VpcConfig|array,
319-
* networkInterface?: null|NetworkInterface|array,
320-
* encryptionKey?: null|string,
321-
* exportedEnvironmentVariables?: null|array<ExportedEnvironmentVariable|array>,
322-
* reportArns?: null|string[],
323-
* fileSystemLocations?: null|array<ProjectFileSystemLocation|array>,
324-
* debugSession?: null|DebugSession|array,
325-
* buildBatchArn?: null|string,
326-
* autoRetryConfig?: null|AutoRetryConfig|array,
294+
* id?: string|null,
295+
* arn?: string|null,
296+
* buildNumber?: int|null,
297+
* startTime?: \DateTimeImmutable|null,
298+
* endTime?: \DateTimeImmutable|null,
299+
* currentPhase?: string|null,
300+
* buildStatus?: StatusType::*|null,
301+
* sourceVersion?: string|null,
302+
* resolvedSourceVersion?: string|null,
303+
* projectName?: string|null,
304+
* phases?: array<BuildPhase|array>|null,
305+
* source?: ProjectSource|array|null,
306+
* secondarySources?: array<ProjectSource|array>|null,
307+
* secondarySourceVersions?: array<ProjectSourceVersion|array>|null,
308+
* artifacts?: BuildArtifacts|array|null,
309+
* secondaryArtifacts?: array<BuildArtifacts|array>|null,
310+
* cache?: ProjectCache|array|null,
311+
* environment?: ProjectEnvironment|array|null,
312+
* serviceRole?: string|null,
313+
* logs?: LogsLocation|array|null,
314+
* timeoutInMinutes?: int|null,
315+
* queuedTimeoutInMinutes?: int|null,
316+
* buildComplete?: bool|null,
317+
* initiator?: string|null,
318+
* vpcConfig?: VpcConfig|array|null,
319+
* networkInterface?: NetworkInterface|array|null,
320+
* encryptionKey?: string|null,
321+
* exportedEnvironmentVariables?: array<ExportedEnvironmentVariable|array>|null,
322+
* reportArns?: string[]|null,
323+
* fileSystemLocations?: array<ProjectFileSystemLocation|array>|null,
324+
* debugSession?: DebugSession|array|null,
325+
* buildBatchArn?: string|null,
326+
* autoRetryConfig?: AutoRetryConfig|array|null,
327327
* } $input
328328
*/
329329
public function __construct(array $input)
@@ -365,39 +365,39 @@ public function __construct(array $input)
365365

366366
/**
367367
* @param array{
368-
* id?: null|string,
369-
* arn?: null|string,
370-
* buildNumber?: null|int,
371-
* startTime?: null|\DateTimeImmutable,
372-
* endTime?: null|\DateTimeImmutable,
373-
* currentPhase?: null|string,
374-
* buildStatus?: null|StatusType::*,
375-
* sourceVersion?: null|string,
376-
* resolvedSourceVersion?: null|string,
377-
* projectName?: null|string,
378-
* phases?: null|array<BuildPhase|array>,
379-
* source?: null|ProjectSource|array,
380-
* secondarySources?: null|array<ProjectSource|array>,
381-
* secondarySourceVersions?: null|array<ProjectSourceVersion|array>,
382-
* artifacts?: null|BuildArtifacts|array,
383-
* secondaryArtifacts?: null|array<BuildArtifacts|array>,
384-
* cache?: null|ProjectCache|array,
385-
* environment?: null|ProjectEnvironment|array,
386-
* serviceRole?: null|string,
387-
* logs?: null|LogsLocation|array,
388-
* timeoutInMinutes?: null|int,
389-
* queuedTimeoutInMinutes?: null|int,
390-
* buildComplete?: null|bool,
391-
* initiator?: null|string,
392-
* vpcConfig?: null|VpcConfig|array,
393-
* networkInterface?: null|NetworkInterface|array,
394-
* encryptionKey?: null|string,
395-
* exportedEnvironmentVariables?: null|array<ExportedEnvironmentVariable|array>,
396-
* reportArns?: null|string[],
397-
* fileSystemLocations?: null|array<ProjectFileSystemLocation|array>,
398-
* debugSession?: null|DebugSession|array,
399-
* buildBatchArn?: null|string,
400-
* autoRetryConfig?: null|AutoRetryConfig|array,
368+
* id?: string|null,
369+
* arn?: string|null,
370+
* buildNumber?: int|null,
371+
* startTime?: \DateTimeImmutable|null,
372+
* endTime?: \DateTimeImmutable|null,
373+
* currentPhase?: string|null,
374+
* buildStatus?: StatusType::*|null,
375+
* sourceVersion?: string|null,
376+
* resolvedSourceVersion?: string|null,
377+
* projectName?: string|null,
378+
* phases?: array<BuildPhase|array>|null,
379+
* source?: ProjectSource|array|null,
380+
* secondarySources?: array<ProjectSource|array>|null,
381+
* secondarySourceVersions?: array<ProjectSourceVersion|array>|null,
382+
* artifacts?: BuildArtifacts|array|null,
383+
* secondaryArtifacts?: array<BuildArtifacts|array>|null,
384+
* cache?: ProjectCache|array|null,
385+
* environment?: ProjectEnvironment|array|null,
386+
* serviceRole?: string|null,
387+
* logs?: LogsLocation|array|null,
388+
* timeoutInMinutes?: int|null,
389+
* queuedTimeoutInMinutes?: int|null,
390+
* buildComplete?: bool|null,
391+
* initiator?: string|null,
392+
* vpcConfig?: VpcConfig|array|null,
393+
* networkInterface?: NetworkInterface|array|null,
394+
* encryptionKey?: string|null,
395+
* exportedEnvironmentVariables?: array<ExportedEnvironmentVariable|array>|null,
396+
* reportArns?: string[]|null,
397+
* fileSystemLocations?: array<ProjectFileSystemLocation|array>|null,
398+
* debugSession?: DebugSession|array|null,
399+
* buildBatchArn?: string|null,
400+
* autoRetryConfig?: AutoRetryConfig|array|null,
401401
* }|Build $input
402402
*/
403403
public static function create($input): self

0 commit comments

Comments
 (0)