Skip to content

Commit

Permalink
fix(style): opening brace should be on a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio La Barbera committed Apr 2, 2024
1 parent 00e3c3c commit 4bb8270
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions tests/Mocks/DynamoDbClientMock.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,33 @@

class DynamoDbClientMock extends DynamoDbClient
{
public function putItem(array $args = []): Result {
public function putItem(array $args = []): Result
{
return parent::putItem($args);
}

public function updateItem(array $args = []): Result {
public function updateItem(array $args = []): Result
{
return parent::updateItem($args);
}

public function deleteItem(array $args = []): Result {
public function deleteItem(array $args = []): Result
{
return parent::deleteItem($args);
}

public function scan(array $args = []): Result {
public function scan(array $args = []): Result
{
return parent::scan($args);
}

public function query(array $args = []): Result {
public function query(array $args = []): Result
{
return parent::query($args);
}

public function batchWriteItem(array $args = []): Result {
public function batchWriteItem(array $args = []): Result
{
return parent::batchWriteItem($args);
}
}

0 comments on commit 4bb8270

Please sign in to comment.