Skip to content

Commit

Permalink
Apply coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
othillo committed Jun 19, 2023
1 parent 8371743 commit 5cc022c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions src/DbalRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ public function __construct(Connection $connection, string $tableName)
$this->tableName = $tableName;
}

/**
* {@inheritdoc}
*/
public function findOneBy(Criteria $criteria, string $sagaId): ?State
{
$results = $this->createAndExecuteQuery($criteria, $sagaId)
Expand Down Expand Up @@ -66,9 +63,6 @@ public function findOneBy(Criteria $criteria, string $sagaId): ?State
return null;
}

/**
* {@inheritdoc}
*/
public function save(State $state, string $sagaId): void
{
$this->connection->beginTransaction();
Expand Down
6 changes: 0 additions & 6 deletions test/DbalRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ public function setUp(): void
parent::setUp();
}

/**
* {@inheritdoc}
*/
protected function createRepository(): RepositoryInterface
{
return new DbalRepository($this->connection, 'saga_state');
Expand All @@ -67,9 +64,6 @@ protected function createTable(): void
$schemaManager->createTable($table);
}

/**
* {@inheritdoc}
*/
public function tearDown(): void
{
$this->connection->getSchemaManager()->dropTable($this->tableName);
Expand Down

0 comments on commit 5cc022c

Please sign in to comment.