Skip to content

Commit a309a18

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

File tree

66 files changed

+1159
-1155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1159
-1155
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- AWS api-change: Expires's property and its getters/setters switched from `\DateTimeImmutable` to `string`.
88

9+
### Changed
10+
11+
- Apply no CodingStandard from latest php-cs-fixer.
12+
913
## 2.10.0
1014

1115
### Added

src/Input/AbortMultipartUploadRequest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ final class AbortMultipartUploadRequest extends Input
9494
* Bucket?: string,
9595
* Key?: string,
9696
* UploadId?: string,
97-
* RequestPayer?: null|RequestPayer::*,
98-
* ExpectedBucketOwner?: null|string,
99-
* IfMatchInitiatedTime?: null|\DateTimeImmutable|string,
97+
* RequestPayer?: RequestPayer::*|null,
98+
* ExpectedBucketOwner?: string|null,
99+
* IfMatchInitiatedTime?: \DateTimeImmutable|string|null,
100100
* '@region'?: string|null,
101101
* } $input
102102
*/
@@ -116,9 +116,9 @@ public function __construct(array $input = [])
116116
* Bucket?: string,
117117
* Key?: string,
118118
* UploadId?: string,
119-
* RequestPayer?: null|RequestPayer::*,
120-
* ExpectedBucketOwner?: null|string,
121-
* IfMatchInitiatedTime?: null|\DateTimeImmutable|string,
119+
* RequestPayer?: RequestPayer::*|null,
120+
* ExpectedBucketOwner?: string|null,
121+
* IfMatchInitiatedTime?: \DateTimeImmutable|string|null,
122122
* '@region'?: string|null,
123123
* }|AbortMultipartUploadRequest $input
124124
*/

src/Input/CompleteMultipartUploadRequest.php

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -243,22 +243,22 @@ final class CompleteMultipartUploadRequest extends Input
243243
* @param array{
244244
* Bucket?: string,
245245
* Key?: string,
246-
* MultipartUpload?: null|CompletedMultipartUpload|array,
246+
* MultipartUpload?: CompletedMultipartUpload|array|null,
247247
* UploadId?: string,
248-
* ChecksumCRC32?: null|string,
249-
* ChecksumCRC32C?: null|string,
250-
* ChecksumCRC64NVME?: null|string,
251-
* ChecksumSHA1?: null|string,
252-
* ChecksumSHA256?: null|string,
253-
* ChecksumType?: null|ChecksumType::*,
254-
* MpuObjectSize?: null|int,
255-
* RequestPayer?: null|RequestPayer::*,
256-
* ExpectedBucketOwner?: null|string,
257-
* IfMatch?: null|string,
258-
* IfNoneMatch?: null|string,
259-
* SSECustomerAlgorithm?: null|string,
260-
* SSECustomerKey?: null|string,
261-
* SSECustomerKeyMD5?: null|string,
248+
* ChecksumCRC32?: string|null,
249+
* ChecksumCRC32C?: string|null,
250+
* ChecksumCRC64NVME?: string|null,
251+
* ChecksumSHA1?: string|null,
252+
* ChecksumSHA256?: string|null,
253+
* ChecksumType?: ChecksumType::*|null,
254+
* MpuObjectSize?: int|null,
255+
* RequestPayer?: RequestPayer::*|null,
256+
* ExpectedBucketOwner?: string|null,
257+
* IfMatch?: string|null,
258+
* IfNoneMatch?: string|null,
259+
* SSECustomerAlgorithm?: string|null,
260+
* SSECustomerKey?: string|null,
261+
* SSECustomerKeyMD5?: string|null,
262262
* '@region'?: string|null,
263263
* } $input
264264
*/
@@ -289,22 +289,22 @@ public function __construct(array $input = [])
289289
* @param array{
290290
* Bucket?: string,
291291
* Key?: string,
292-
* MultipartUpload?: null|CompletedMultipartUpload|array,
292+
* MultipartUpload?: CompletedMultipartUpload|array|null,
293293
* UploadId?: string,
294-
* ChecksumCRC32?: null|string,
295-
* ChecksumCRC32C?: null|string,
296-
* ChecksumCRC64NVME?: null|string,
297-
* ChecksumSHA1?: null|string,
298-
* ChecksumSHA256?: null|string,
299-
* ChecksumType?: null|ChecksumType::*,
300-
* MpuObjectSize?: null|int,
301-
* RequestPayer?: null|RequestPayer::*,
302-
* ExpectedBucketOwner?: null|string,
303-
* IfMatch?: null|string,
304-
* IfNoneMatch?: null|string,
305-
* SSECustomerAlgorithm?: null|string,
306-
* SSECustomerKey?: null|string,
307-
* SSECustomerKeyMD5?: null|string,
294+
* ChecksumCRC32?: string|null,
295+
* ChecksumCRC32C?: string|null,
296+
* ChecksumCRC64NVME?: string|null,
297+
* ChecksumSHA1?: string|null,
298+
* ChecksumSHA256?: string|null,
299+
* ChecksumType?: ChecksumType::*|null,
300+
* MpuObjectSize?: int|null,
301+
* RequestPayer?: RequestPayer::*|null,
302+
* ExpectedBucketOwner?: string|null,
303+
* IfMatch?: string|null,
304+
* IfNoneMatch?: string|null,
305+
* SSECustomerAlgorithm?: string|null,
306+
* SSECustomerKey?: string|null,
307+
* SSECustomerKeyMD5?: string|null,
308308
* '@region'?: string|null,
309309
* }|CompleteMultipartUploadRequest $input
310310
*/

src/Input/CopyObjectRequest.php

Lines changed: 76 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -700,47 +700,47 @@ final class CopyObjectRequest extends Input
700700

701701
/**
702702
* @param array{
703-
* ACL?: null|ObjectCannedACL::*,
703+
* ACL?: ObjectCannedACL::*|null,
704704
* Bucket?: string,
705-
* CacheControl?: null|string,
706-
* ChecksumAlgorithm?: null|ChecksumAlgorithm::*,
707-
* ContentDisposition?: null|string,
708-
* ContentEncoding?: null|string,
709-
* ContentLanguage?: null|string,
710-
* ContentType?: null|string,
705+
* CacheControl?: string|null,
706+
* ChecksumAlgorithm?: ChecksumAlgorithm::*|null,
707+
* ContentDisposition?: string|null,
708+
* ContentEncoding?: string|null,
709+
* ContentLanguage?: string|null,
710+
* ContentType?: string|null,
711711
* CopySource?: string,
712-
* CopySourceIfMatch?: null|string,
713-
* CopySourceIfModifiedSince?: null|\DateTimeImmutable|string,
714-
* CopySourceIfNoneMatch?: null|string,
715-
* CopySourceIfUnmodifiedSince?: null|\DateTimeImmutable|string,
716-
* Expires?: null|string,
717-
* GrantFullControl?: null|string,
718-
* GrantRead?: null|string,
719-
* GrantReadACP?: null|string,
720-
* GrantWriteACP?: null|string,
712+
* CopySourceIfMatch?: string|null,
713+
* CopySourceIfModifiedSince?: \DateTimeImmutable|string|null,
714+
* CopySourceIfNoneMatch?: string|null,
715+
* CopySourceIfUnmodifiedSince?: \DateTimeImmutable|string|null,
716+
* Expires?: string|null,
717+
* GrantFullControl?: string|null,
718+
* GrantRead?: string|null,
719+
* GrantReadACP?: string|null,
720+
* GrantWriteACP?: string|null,
721721
* Key?: string,
722-
* Metadata?: null|array<string, string>,
723-
* MetadataDirective?: null|MetadataDirective::*,
724-
* TaggingDirective?: null|TaggingDirective::*,
725-
* ServerSideEncryption?: null|ServerSideEncryption::*,
726-
* StorageClass?: null|StorageClass::*,
727-
* WebsiteRedirectLocation?: null|string,
728-
* SSECustomerAlgorithm?: null|string,
729-
* SSECustomerKey?: null|string,
730-
* SSECustomerKeyMD5?: null|string,
731-
* SSEKMSKeyId?: null|string,
732-
* SSEKMSEncryptionContext?: null|string,
733-
* BucketKeyEnabled?: null|bool,
734-
* CopySourceSSECustomerAlgorithm?: null|string,
735-
* CopySourceSSECustomerKey?: null|string,
736-
* CopySourceSSECustomerKeyMD5?: null|string,
737-
* RequestPayer?: null|RequestPayer::*,
738-
* Tagging?: null|string,
739-
* ObjectLockMode?: null|ObjectLockMode::*,
740-
* ObjectLockRetainUntilDate?: null|\DateTimeImmutable|string,
741-
* ObjectLockLegalHoldStatus?: null|ObjectLockLegalHoldStatus::*,
742-
* ExpectedBucketOwner?: null|string,
743-
* ExpectedSourceBucketOwner?: null|string,
722+
* Metadata?: array<string, string>|null,
723+
* MetadataDirective?: MetadataDirective::*|null,
724+
* TaggingDirective?: TaggingDirective::*|null,
725+
* ServerSideEncryption?: ServerSideEncryption::*|null,
726+
* StorageClass?: StorageClass::*|null,
727+
* WebsiteRedirectLocation?: string|null,
728+
* SSECustomerAlgorithm?: string|null,
729+
* SSECustomerKey?: string|null,
730+
* SSECustomerKeyMD5?: string|null,
731+
* SSEKMSKeyId?: string|null,
732+
* SSEKMSEncryptionContext?: string|null,
733+
* BucketKeyEnabled?: bool|null,
734+
* CopySourceSSECustomerAlgorithm?: string|null,
735+
* CopySourceSSECustomerKey?: string|null,
736+
* CopySourceSSECustomerKeyMD5?: string|null,
737+
* RequestPayer?: RequestPayer::*|null,
738+
* Tagging?: string|null,
739+
* ObjectLockMode?: ObjectLockMode::*|null,
740+
* ObjectLockRetainUntilDate?: \DateTimeImmutable|string|null,
741+
* ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus::*|null,
742+
* ExpectedBucketOwner?: string|null,
743+
* ExpectedSourceBucketOwner?: string|null,
744744
* '@region'?: string|null,
745745
* } $input
746746
*/
@@ -792,47 +792,47 @@ public function __construct(array $input = [])
792792

793793
/**
794794
* @param array{
795-
* ACL?: null|ObjectCannedACL::*,
795+
* ACL?: ObjectCannedACL::*|null,
796796
* Bucket?: string,
797-
* CacheControl?: null|string,
798-
* ChecksumAlgorithm?: null|ChecksumAlgorithm::*,
799-
* ContentDisposition?: null|string,
800-
* ContentEncoding?: null|string,
801-
* ContentLanguage?: null|string,
802-
* ContentType?: null|string,
797+
* CacheControl?: string|null,
798+
* ChecksumAlgorithm?: ChecksumAlgorithm::*|null,
799+
* ContentDisposition?: string|null,
800+
* ContentEncoding?: string|null,
801+
* ContentLanguage?: string|null,
802+
* ContentType?: string|null,
803803
* CopySource?: string,
804-
* CopySourceIfMatch?: null|string,
805-
* CopySourceIfModifiedSince?: null|\DateTimeImmutable|string,
806-
* CopySourceIfNoneMatch?: null|string,
807-
* CopySourceIfUnmodifiedSince?: null|\DateTimeImmutable|string,
808-
* Expires?: null|string,
809-
* GrantFullControl?: null|string,
810-
* GrantRead?: null|string,
811-
* GrantReadACP?: null|string,
812-
* GrantWriteACP?: null|string,
804+
* CopySourceIfMatch?: string|null,
805+
* CopySourceIfModifiedSince?: \DateTimeImmutable|string|null,
806+
* CopySourceIfNoneMatch?: string|null,
807+
* CopySourceIfUnmodifiedSince?: \DateTimeImmutable|string|null,
808+
* Expires?: string|null,
809+
* GrantFullControl?: string|null,
810+
* GrantRead?: string|null,
811+
* GrantReadACP?: string|null,
812+
* GrantWriteACP?: string|null,
813813
* Key?: string,
814-
* Metadata?: null|array<string, string>,
815-
* MetadataDirective?: null|MetadataDirective::*,
816-
* TaggingDirective?: null|TaggingDirective::*,
817-
* ServerSideEncryption?: null|ServerSideEncryption::*,
818-
* StorageClass?: null|StorageClass::*,
819-
* WebsiteRedirectLocation?: null|string,
820-
* SSECustomerAlgorithm?: null|string,
821-
* SSECustomerKey?: null|string,
822-
* SSECustomerKeyMD5?: null|string,
823-
* SSEKMSKeyId?: null|string,
824-
* SSEKMSEncryptionContext?: null|string,
825-
* BucketKeyEnabled?: null|bool,
826-
* CopySourceSSECustomerAlgorithm?: null|string,
827-
* CopySourceSSECustomerKey?: null|string,
828-
* CopySourceSSECustomerKeyMD5?: null|string,
829-
* RequestPayer?: null|RequestPayer::*,
830-
* Tagging?: null|string,
831-
* ObjectLockMode?: null|ObjectLockMode::*,
832-
* ObjectLockRetainUntilDate?: null|\DateTimeImmutable|string,
833-
* ObjectLockLegalHoldStatus?: null|ObjectLockLegalHoldStatus::*,
834-
* ExpectedBucketOwner?: null|string,
835-
* ExpectedSourceBucketOwner?: null|string,
814+
* Metadata?: array<string, string>|null,
815+
* MetadataDirective?: MetadataDirective::*|null,
816+
* TaggingDirective?: TaggingDirective::*|null,
817+
* ServerSideEncryption?: ServerSideEncryption::*|null,
818+
* StorageClass?: StorageClass::*|null,
819+
* WebsiteRedirectLocation?: string|null,
820+
* SSECustomerAlgorithm?: string|null,
821+
* SSECustomerKey?: string|null,
822+
* SSECustomerKeyMD5?: string|null,
823+
* SSEKMSKeyId?: string|null,
824+
* SSEKMSEncryptionContext?: string|null,
825+
* BucketKeyEnabled?: bool|null,
826+
* CopySourceSSECustomerAlgorithm?: string|null,
827+
* CopySourceSSECustomerKey?: string|null,
828+
* CopySourceSSECustomerKeyMD5?: string|null,
829+
* RequestPayer?: RequestPayer::*|null,
830+
* Tagging?: string|null,
831+
* ObjectLockMode?: ObjectLockMode::*|null,
832+
* ObjectLockRetainUntilDate?: \DateTimeImmutable|string|null,
833+
* ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus::*|null,
834+
* ExpectedBucketOwner?: string|null,
835+
* ExpectedSourceBucketOwner?: string|null,
836836
* '@region'?: string|null,
837837
* }|CopyObjectRequest $input
838838
*/

src/Input/CreateBucketRequest.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,16 @@ final class CreateBucketRequest extends Input
113113

114114
/**
115115
* @param array{
116-
* ACL?: null|BucketCannedACL::*,
116+
* ACL?: BucketCannedACL::*|null,
117117
* Bucket?: string,
118-
* CreateBucketConfiguration?: null|CreateBucketConfiguration|array,
119-
* GrantFullControl?: null|string,
120-
* GrantRead?: null|string,
121-
* GrantReadACP?: null|string,
122-
* GrantWrite?: null|string,
123-
* GrantWriteACP?: null|string,
124-
* ObjectLockEnabledForBucket?: null|bool,
125-
* ObjectOwnership?: null|ObjectOwnership::*,
118+
* CreateBucketConfiguration?: CreateBucketConfiguration|array|null,
119+
* GrantFullControl?: string|null,
120+
* GrantRead?: string|null,
121+
* GrantReadACP?: string|null,
122+
* GrantWrite?: string|null,
123+
* GrantWriteACP?: string|null,
124+
* ObjectLockEnabledForBucket?: bool|null,
125+
* ObjectOwnership?: ObjectOwnership::*|null,
126126
* '@region'?: string|null,
127127
* } $input
128128
*/
@@ -143,16 +143,16 @@ public function __construct(array $input = [])
143143

144144
/**
145145
* @param array{
146-
* ACL?: null|BucketCannedACL::*,
146+
* ACL?: BucketCannedACL::*|null,
147147
* Bucket?: string,
148-
* CreateBucketConfiguration?: null|CreateBucketConfiguration|array,
149-
* GrantFullControl?: null|string,
150-
* GrantRead?: null|string,
151-
* GrantReadACP?: null|string,
152-
* GrantWrite?: null|string,
153-
* GrantWriteACP?: null|string,
154-
* ObjectLockEnabledForBucket?: null|bool,
155-
* ObjectOwnership?: null|ObjectOwnership::*,
148+
* CreateBucketConfiguration?: CreateBucketConfiguration|array|null,
149+
* GrantFullControl?: string|null,
150+
* GrantRead?: string|null,
151+
* GrantReadACP?: string|null,
152+
* GrantWrite?: string|null,
153+
* GrantWriteACP?: string|null,
154+
* ObjectLockEnabledForBucket?: bool|null,
155+
* ObjectOwnership?: ObjectOwnership::*|null,
156156
* '@region'?: string|null,
157157
* }|CreateBucketRequest $input
158158
*/

0 commit comments

Comments
 (0)