We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8b353 commit 5fa5264Copy full SHA for 5fa5264
CHANGELOG.md
@@ -6,6 +6,10 @@
6
7
- AWS api-change: rework regions definition
8
9
+### Changed
10
+
11
+- Apply no CodingStandard from latest php-cs-fixer.
12
13
## 1.4.1
14
15
### Changed
src/ValueObject/RoleCredentials.php
@@ -46,10 +46,10 @@ final class RoleCredentials
46
47
/**
48
* @param array{
49
- * accessKeyId?: null|string,
50
- * secretAccessKey?: null|string,
51
- * sessionToken?: null|string,
52
- * expiration?: null|int,
+ * accessKeyId?: string|null,
+ * secretAccessKey?: string|null,
+ * sessionToken?: string|null,
+ * expiration?: int|null,
53
* } $input
54
*/
55
public function __construct(array $input)
@@ -62,10 +62,10 @@ public function __construct(array $input)
62
63
64
65
66
67
68
69
* }|RoleCredentials $input
70
71
public static function create($input): self
0 commit comments