Skip to content

Commit 5fa5264

Browse files
authored
Bump php-cs-fixer to version 3.87.x (#1942)
1 parent 8f8b353 commit 5fa5264

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
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: rework regions definition
88

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

1115
### Changed

src/ValueObject/RoleCredentials.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ final class RoleCredentials
4646

4747
/**
4848
* @param array{
49-
* accessKeyId?: null|string,
50-
* secretAccessKey?: null|string,
51-
* sessionToken?: null|string,
52-
* expiration?: null|int,
49+
* accessKeyId?: string|null,
50+
* secretAccessKey?: string|null,
51+
* sessionToken?: string|null,
52+
* expiration?: int|null,
5353
* } $input
5454
*/
5555
public function __construct(array $input)
@@ -62,10 +62,10 @@ public function __construct(array $input)
6262

6363
/**
6464
* @param array{
65-
* accessKeyId?: null|string,
66-
* secretAccessKey?: null|string,
67-
* sessionToken?: null|string,
68-
* expiration?: null|int,
65+
* accessKeyId?: string|null,
66+
* secretAccessKey?: string|null,
67+
* sessionToken?: string|null,
68+
* expiration?: int|null,
6969
* }|RoleCredentials $input
7070
*/
7171
public static function create($input): self

0 commit comments

Comments
 (0)