Skip to content

Commit b19ea17

Browse files
authored
Syntax update on properties (#440)
1 parent 0fe08a6 commit b19ea17

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

src/Input/CreateTableInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class CreateTableInput implements Input
6969
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed
7070
* later.
7171
*
72-
* @var BillingMode::*|null
72+
* @var null|BillingMode::*
7373
*/
7474
private $BillingMode;
7575

src/Input/DeleteItemInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ class DeleteItemInput implements Input
4949
*
5050
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
5151
*
52-
* @var ConditionalOperator::*|null
52+
* @var null|ConditionalOperator::*
5353
*/
5454
private $ConditionalOperator;
5555

5656
/**
5757
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were deleted. For
5858
* `DeleteItem`, the valid values are:.
5959
*
60-
* @var ReturnValue::*|null
60+
* @var null|ReturnValue::*
6161
*/
6262
private $ReturnValues;
6363

6464
/**
65-
* @var ReturnConsumedCapacity::*|null
65+
* @var null|ReturnConsumedCapacity::*
6666
*/
6767
private $ReturnConsumedCapacity;
6868

@@ -71,7 +71,7 @@ class DeleteItemInput implements Input
7171
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
7272
* default), no statistics are returned.
7373
*
74-
* @var ReturnItemCollectionMetrics::*|null
74+
* @var null|ReturnItemCollectionMetrics::*
7575
*/
7676
private $ReturnItemCollectionMetrics;
7777

src/Input/GetItemInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class GetItemInput implements Input
4848
private $ConsistentRead;
4949

5050
/**
51-
* @var ReturnConsumedCapacity::*|null
51+
* @var null|ReturnConsumedCapacity::*
5252
*/
5353
private $ReturnConsumedCapacity;
5454

src/Input/PutItemInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ class PutItemInput implements Input
4848
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were updated with the
4949
* `PutItem` request. For `PutItem`, the valid values are:.
5050
*
51-
* @var ReturnValue::*|null
51+
* @var null|ReturnValue::*
5252
*/
5353
private $ReturnValues;
5454

5555
/**
56-
* @var ReturnConsumedCapacity::*|null
56+
* @var null|ReturnConsumedCapacity::*
5757
*/
5858
private $ReturnConsumedCapacity;
5959

@@ -62,7 +62,7 @@ class PutItemInput implements Input
6262
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
6363
* default), no statistics are returned.
6464
*
65-
* @var ReturnItemCollectionMetrics::*|null
65+
* @var null|ReturnItemCollectionMetrics::*
6666
*/
6767
private $ReturnItemCollectionMetrics;
6868

@@ -72,7 +72,7 @@ class PutItemInput implements Input
7272
*
7373
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
7474
*
75-
* @var ConditionalOperator::*|null
75+
* @var null|ConditionalOperator::*
7676
*/
7777
private $ConditionalOperator;
7878

src/Input/QueryInput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class QueryInput implements Input
3535
* The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the
3636
* count of matching items, or in the case of an index, some or all of the attributes projected into the index.
3737
*
38-
* @var Select::*|null
38+
* @var null|Select::*
3939
*/
4040
private $Select;
4141

@@ -98,7 +98,7 @@ class QueryInput implements Input
9898
*
9999
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
100100
*
101-
* @var ConditionalOperator::*|null
101+
* @var null|ConditionalOperator::*
102102
*/
103103
private $ConditionalOperator;
104104

@@ -119,7 +119,7 @@ class QueryInput implements Input
119119
private $ExclusiveStartKey;
120120

121121
/**
122-
* @var ReturnConsumedCapacity::*|null
122+
* @var null|ReturnConsumedCapacity::*
123123
*/
124124
private $ReturnConsumedCapacity;
125125

src/Input/ScanInput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ScanInput implements Input
6161
* The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the
6262
* count of matching items, or in the case of an index, some or all of the attributes projected into the index.
6363
*
64-
* @var Select::*|null
64+
* @var null|Select::*
6565
*/
6666
private $Select;
6767

@@ -81,7 +81,7 @@ class ScanInput implements Input
8181
*
8282
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
8383
*
84-
* @var ConditionalOperator::*|null
84+
* @var null|ConditionalOperator::*
8585
*/
8686
private $ConditionalOperator;
8787

@@ -94,7 +94,7 @@ class ScanInput implements Input
9494
private $ExclusiveStartKey;
9595

9696
/**
97-
* @var ReturnConsumedCapacity::*|null
97+
* @var null|ReturnConsumedCapacity::*
9898
*/
9999
private $ReturnConsumedCapacity;
100100

src/Input/UpdateItemInput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ class UpdateItemInput implements Input
6060
*
6161
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
6262
*
63-
* @var ConditionalOperator::*|null
63+
* @var null|ConditionalOperator::*
6464
*/
6565
private $ConditionalOperator;
6666

6767
/**
6868
* Use `ReturnValues` if you want to get the item attributes as they appear before or after they are updated. For
6969
* `UpdateItem`, the valid values are:.
7070
*
71-
* @var ReturnValue::*|null
71+
* @var null|ReturnValue::*
7272
*/
7373
private $ReturnValues;
7474

7575
/**
76-
* @var ReturnConsumedCapacity::*|null
76+
* @var null|ReturnConsumedCapacity::*
7777
*/
7878
private $ReturnConsumedCapacity;
7979

@@ -82,7 +82,7 @@ class UpdateItemInput implements Input
8282
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
8383
* default), no statistics are returned.
8484
*
85-
* @var ReturnItemCollectionMetrics::*|null
85+
* @var null|ReturnItemCollectionMetrics::*
8686
*/
8787
private $ReturnItemCollectionMetrics;
8888

src/Input/UpdateTableInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class UpdateTableInput implements Input
3939
* capacity values are estimated based on the consumed read and write capacity of your table and global secondary
4040
* indexes over the past 30 minutes.
4141
*
42-
* @var BillingMode::*|null
42+
* @var null|BillingMode::*
4343
*/
4444
private $BillingMode;
4545

0 commit comments

Comments
 (0)