Skip to content

Commit 80fc408

Browse files
authored
Update CS dependencies (#1688)
1 parent fa5d6c5 commit 80fc408

29 files changed

+54
-52
lines changed

src/Enum/ReturnConsumedCapacity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the
7-
* response:.
7+
* response:
88
*
99
* - `INDEXES` - The response includes the aggregate `ConsumedCapacity` for the operation, together with
1010
* `ConsumedCapacity` for each table and secondary index that was accessed.

src/Input/BatchWriteItemInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class BatchWriteItemInput extends Input
1717
{
1818
/**
1919
* A map of one or more table names and, for each table, a list of operations to be performed (`DeleteRequest` or
20-
* `PutRequest`). Each element in the map consists of the following:.
20+
* `PutRequest`). Each element in the map consists of the following:
2121
*
2222
* - `DeleteRequest` - Perform a `DeleteItem` operation on the specified item. The item to be deleted is identified by a
2323
* `Key` subelement:

src/Input/CreateTableInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ final class CreateTableInput extends Input
113113

114114
/**
115115
* One or more global secondary indexes (the maximum is 20) to be created on the table. Each global secondary index in
116-
* the array includes the following:.
116+
* the array includes the following:
117117
*
118118
* - `IndexName` - The name of the global secondary index. Must be unique only for this table.
119119
* - `KeySchema` - Specifies the key schema for the global secondary index.
@@ -173,7 +173,7 @@ final class CreateTableInput extends Input
173173
private $provisionedThroughput;
174174

175175
/**
176-
* The settings for DynamoDB Streams on the table. These settings consist of:.
176+
* The settings for DynamoDB Streams on the table. These settings consist of:
177177
*
178178
* - `StreamEnabled` - Indicates whether DynamoDB Streams is to be enabled (true) or disabled (false).
179179
* - `StreamViewType` - When an item in the table is modified, `StreamViewType` determines what information is written

src/Input/DeleteItemInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ final class DeleteItemInput extends Input
6363

6464
/**
6565
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were deleted. For
66-
* `DeleteItem`, the valid values are:.
66+
* `DeleteItem`, the valid values are:
6767
*
6868
* - `NONE` - If `ReturnValues` is not specified, or if its value is `NONE`, then nothing is returned. (This setting is
6969
* the default for `ReturnValues`.)
@@ -115,7 +115,7 @@ final class DeleteItemInput extends Input
115115

116116
/**
117117
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
118-
* `ExpressionAttributeNames`:.
118+
* `ExpressionAttributeNames`:
119119
*
120120
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
121121
* - To create a placeholder for repeating occurrences of an attribute name in an expression.

src/Input/GetItemInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ final class GetItemInput extends Input
7676

7777
/**
7878
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
79-
* `ExpressionAttributeNames`:.
79+
* `ExpressionAttributeNames`:
8080
*
8181
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
8282
* - To create a placeholder for repeating occurrences of an attribute name in an expression.

src/Input/PutItemInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ final class PutItemInput extends Input
6666

6767
/**
6868
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were updated with the
69-
* `PutItem` request. For `PutItem`, the valid values are:.
69+
* `PutItem` request. For `PutItem`, the valid values are:
7070
*
7171
* - `NONE` - If `ReturnValues` is not specified, or if its value is `NONE`, then nothing is returned. (This setting is
7272
* the default for `ReturnValues`.)
@@ -130,7 +130,7 @@ final class PutItemInput extends Input
130130

131131
/**
132132
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
133-
* `ExpressionAttributeNames`:.
133+
* `ExpressionAttributeNames`:
134134
*
135135
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
136136
* - To create a placeholder for repeating occurrences of an attribute name in an expression.

src/Input/QueryInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ final class QueryInput extends Input
260260

261261
/**
262262
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
263-
* `ExpressionAttributeNames`:.
263+
* `ExpressionAttributeNames`:
264264
*
265265
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
266266
* - To create a placeholder for repeating occurrences of an attribute name in an expression.

src/Input/ScanInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ final class ScanInput extends Input
199199

200200
/**
201201
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
202-
* `ExpressionAttributeNames`:.
202+
* `ExpressionAttributeNames`:
203203
*
204204
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
205205
* - To create a placeholder for repeating occurrences of an attribute name in an expression.
@@ -259,7 +259,7 @@ final class ScanInput extends Input
259259
private $expressionAttributeValues;
260260

261261
/**
262-
* A Boolean value that determines the read consistency model during the scan:.
262+
* A Boolean value that determines the read consistency model during the scan:
263263
*
264264
* - If `ConsistentRead` is `false`, then the data returned from `Scan` might not contain the results from other
265265
* recently completed write operations (`PutItem`, `UpdateItem`, or `DeleteItem`).

src/Input/UpdateItemInput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ final class UpdateItemInput extends Input
7474

7575
/**
7676
* Use `ReturnValues` if you want to get the item attributes as they appear before or after they are successfully
77-
* updated. For `UpdateItem`, the valid values are:.
77+
* updated. For `UpdateItem`, the valid values are:
7878
*
7979
* - `NONE` - If `ReturnValues` is not specified, or if its value is `NONE`, then nothing is returned. (This setting is
8080
* the default for `ReturnValues`.)
@@ -196,7 +196,7 @@ final class UpdateItemInput extends Input
196196

197197
/**
198198
* One or more substitution tokens for attribute names in an expression. The following are some use cases for using
199-
* `ExpressionAttributeNames`:.
199+
* `ExpressionAttributeNames`:
200200
*
201201
* - To access an attribute whose name conflicts with a DynamoDB reserved word.
202202
* - To create a placeholder for repeating occurrences of an attribute name in an expression.

src/Input/UpdateTableInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ final class UpdateTableInput extends Input
6464

6565
/**
6666
* An array of one or more global secondary indexes for the table. For each index in the array, you can request one
67-
* action:.
67+
* action:
6868
*
6969
* - `Create` - add a new global secondary index to the table.
7070
* - `Update` - modify the provisioned throughput settings of an existing global secondary index.

0 commit comments

Comments
 (0)