| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | final class ListTablesRequest extends AbstractRequest |
||
| 6 | { |
||
| 7 | use LimitAwareRequestTrait; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var string The name of the last table in the current page of results. |
||
| 11 | */ |
||
| 12 | protected $lastEvaluatedTableName; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Registers the name of table to be used as the last in the current page of results. |
||
| 16 | * |
||
| 17 | * @param string $lastEvaluatedTableName The name of the last table in the current page of results. |
||
| 18 | * @return ListTablesRequest This object. |
||
| 19 | */ |
||
| 20 | 1 | public function setLastEvaluatedTableName(string $lastEvaluatedTableName): ListTablesRequest |
|
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritDoc} |
||
| 28 | */ |
||
| 29 | 21 | public function get(): array |
|
| 41 |