Skip to content

Commit 704812b

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 7769753 commit 704812b

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
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.11.0
610

711
### Added

src/EcrClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class EcrClient extends AbstractApi
2929
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-api.ecr-2015-09-21.html#getauthorizationtoken
3030
*
3131
* @param array{
32-
* registryIds?: null|string[],
32+
* registryIds?: string[]|null,
3333
* '@region'?: string|null,
3434
* }|GetAuthorizationTokenRequest $input
3535
*

src/Input/GetAuthorizationTokenRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class GetAuthorizationTokenRequest extends Input
1818

1919
/**
2020
* @param array{
21-
* registryIds?: null|string[],
21+
* registryIds?: string[]|null,
2222
* '@region'?: string|null,
2323
* } $input
2424
*/
@@ -30,7 +30,7 @@ public function __construct(array $input = [])
3030

3131
/**
3232
* @param array{
33-
* registryIds?: null|string[],
33+
* registryIds?: string[]|null,
3434
* '@region'?: string|null,
3535
* }|GetAuthorizationTokenRequest $input
3636
*/

src/ValueObject/AuthorizationData.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ final class AuthorizationData
3434

3535
/**
3636
* @param array{
37-
* authorizationToken?: null|string,
38-
* expiresAt?: null|\DateTimeImmutable,
39-
* proxyEndpoint?: null|string,
37+
* authorizationToken?: string|null,
38+
* expiresAt?: \DateTimeImmutable|null,
39+
* proxyEndpoint?: string|null,
4040
* } $input
4141
*/
4242
public function __construct(array $input)
@@ -48,9 +48,9 @@ public function __construct(array $input)
4848

4949
/**
5050
* @param array{
51-
* authorizationToken?: null|string,
52-
* expiresAt?: null|\DateTimeImmutable,
53-
* proxyEndpoint?: null|string,
51+
* authorizationToken?: string|null,
52+
* expiresAt?: \DateTimeImmutable|null,
53+
* proxyEndpoint?: string|null,
5454
* }|AuthorizationData $input
5555
*/
5656
public static function create($input): self

0 commit comments

Comments
 (0)