Skip to content

Commit 48fa0f2

Browse files
authored
Regenerate code after nette/php-generator update (#923)
1 parent 92bdc56 commit 48fa0f2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/Result/ListTablesOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ListTablesOutput extends Result implements \IteratorAggregate
2323
* The name of the last table in the current page of results. Use this value as the `ExclusiveStartTableName` in a new
2424
* request to obtain the next page of results, until all the table names are returned.
2525
*/
26-
private $LastEvaluatedTableName;
26+
private $LastEvaluatedTableName = null;
2727

2828
/**
2929
* Iterates over TableNames.

src/Result/QueryOutput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class QueryOutput extends Result implements \IteratorAggregate
2525
/**
2626
* The number of items in the response.
2727
*/
28-
private $Count;
28+
private $Count = null;
2929

3030
/**
3131
* The number of items evaluated, before any `QueryFilter` is applied. A high `ScannedCount` value with few, or no,
@@ -34,7 +34,7 @@ class QueryOutput extends Result implements \IteratorAggregate
3434
*
3535
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Count
3636
*/
37-
private $ScannedCount;
37+
private $ScannedCount = null;
3838

3939
/**
4040
* The primary key of the item where the operation stopped, inclusive of the previous result set. Use this value to
@@ -50,7 +50,7 @@ class QueryOutput extends Result implements \IteratorAggregate
5050
*
5151
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html
5252
*/
53-
private $ConsumedCapacity;
53+
private $ConsumedCapacity = null;
5454

5555
public function getConsumedCapacity(): ?ConsumedCapacity
5656
{

src/Result/ScanOutput.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ScanOutput extends Result implements \IteratorAggregate
2525
/**
2626
* The number of items in the response.
2727
*/
28-
private $Count;
28+
private $Count = null;
2929

3030
/**
3131
* The number of items evaluated, before any `ScanFilter` is applied. A high `ScannedCount` value with few, or no,
@@ -34,7 +34,7 @@ class ScanOutput extends Result implements \IteratorAggregate
3434
*
3535
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Count
3636
*/
37-
private $ScannedCount;
37+
private $ScannedCount = null;
3838

3939
/**
4040
* The primary key of the item where the operation stopped, inclusive of the previous result set. Use this value to
@@ -50,7 +50,7 @@ class ScanOutput extends Result implements \IteratorAggregate
5050
*
5151
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html
5252
*/
53-
private $ConsumedCapacity;
53+
private $ConsumedCapacity = null;
5454

5555
public function getConsumedCapacity(): ?ConsumedCapacity
5656
{

0 commit comments

Comments
 (0)