Skip to content

Commit 6335204

Browse files
authored
Update CS dependencies (#1688)
1 parent 424785c commit 6335204

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
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+
- AWS enhancement: Documentation updates.
8+
59
## 2.1.0
610

711
### Added

src/Exception/SecretsErrorException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:.
8+
* There was a problem with the Secrets Manager secret used with the request, caused by one of the following conditions:
99
*
1010
* - RDS Data API timed out retrieving the secret.
1111
* - The secret provided wasn't found.

src/Exception/UnsupportedResultException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use AsyncAws\Core\Exception\Http\ClientException;
66

77
/**
8-
* There was a problem with the result because of one of the following conditions:.
8+
* There was a problem with the result because of one of the following conditions:
99
*
1010
* - It contained an unsupported data type.
1111
* - It contained a multidimensional array.

src/ValueObject/ArrayValue.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
namespace AsyncAws\RdsDataService\ValueObject;
44

5+
use AsyncAws\RdsDataService\ValueObject\ArrayValue as ArrayValue1;
6+
57
/**
68
* Contains an array.
79
*/
@@ -57,7 +59,7 @@ public function __construct(array $input)
5759
$this->longValues = $input['longValues'] ?? null;
5860
$this->doubleValues = $input['doubleValues'] ?? null;
5961
$this->stringValues = $input['stringValues'] ?? null;
60-
$this->arrayValues = isset($input['arrayValues']) ? array_map([ArrayValue::class, 'create'], $input['arrayValues']) : null;
62+
$this->arrayValues = isset($input['arrayValues']) ? array_map([ArrayValue1::class, 'create'], $input['arrayValues']) : null;
6163
}
6264

6365
/**

src/ValueObject/SqlParameter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ final class SqlParameter
2525
private $value;
2626

2727
/**
28-
* A hint that specifies the correct object type for data type mapping. Possible values are as follows:.
28+
* A hint that specifies the correct object type for data type mapping. Possible values are as follows:
2929
*
3030
* - `DATE` - The corresponding `String` parameter value is sent as an object of `DATE` type to the database. The
3131
* accepted format is `YYYY-MM-DD`.

0 commit comments

Comments
 (0)