Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
musonza committed Oct 23, 2023
1 parent 34d1c53 commit 456167f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/DynamoBreezeService.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public function getDynamoDbClient(): DynamoDbClient
public function exclusiveStartKey($startKey): self
{
$this->exclusiveStartKey = $startKey;

return $this;
}

Expand All @@ -92,10 +93,10 @@ public function accessPattern(string $patternName, array $dataProvider): self
return $this;
}

/* Insert a record into DynamoDB.
*
* @return mixed
*/
/* Insert a record into DynamoDB.
*
* @return mixed
*/
public function insertRecord(array $parameters)
{
$parameters = array_merge(['TableName' => $this->queryBuilder->getTableName()], $parameters);
Expand Down

0 comments on commit 456167f

Please sign in to comment.