Skip to content

Commit a5868c6

Browse files
committed
2.0.3 release. put() type declarations changed from mixed to string
1 parent e6b5fef commit a5868c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

AWS_SMPS.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Aws\Ssm\SsmClient;
55

66
class AWS_SMPS {
7-
public const VERSION = '2.0.2';
7+
public const VERSION = '2.0.3';
88

99
public const STRING = 'String';
1010
public const STRING_LIST = 'StringList';
@@ -18,7 +18,7 @@ public function __construct(string $region = null, string $profile = null, strin
1818
]);
1919
}
2020

21-
public function put(string $type, string $name, mixed $value, string $description = null, array $tags = []) {
21+
public function put(string $type, string $name, string $value, string $description = null, array $tags = []) {
2222
return $this->client->putParameter([
2323
'Overwrite' => true,
2424
'Type' => $type,

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.2
1+
2.0.3

0 commit comments

Comments
 (0)