Skip to content

Commit

Permalink
remove unused suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
Masiukevich Maksim committed Jan 3, 2021
1 parent 9ab7177 commit 2abeb62
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
14 changes: 0 additions & 14 deletions src/Sql/AmpPosgreSQL/AmpPostgreSQLResultSet.php
Expand Up @@ -45,9 +45,6 @@ public function __construct(object $originalResultSet)
$this->originalResultSet = $originalResultSet;
}

/**
* {@inheritdoc}
*/
public function advance(): Promise
{
$this->advanceCalled = true;
Expand All @@ -69,9 +66,6 @@ public function advance(): Promise
// @codeCoverageIgnoreEnd
}

/**
* {@inheritdoc}
*/
public function getCurrent(): ?array
{
try
Expand All @@ -96,11 +90,6 @@ public function getCurrent(): ?array
// @codeCoverageIgnoreEnd
}

/**
* {@inheritdoc}
*
* @psalm-suppress MixedReturnTypeCoercion
*/
public function lastInsertId(?string $sequence = null): Promise
{
return call(
Expand Down Expand Up @@ -142,9 +131,6 @@ function (): \Generator
);
}

/**
* {@inheritdoc}
*/
public function affectedRows(): int
{
try
Expand Down
1 change: 0 additions & 1 deletion src/Sql/AmpPosgreSQL/AmpPostgreSQLTransaction.php
Expand Up @@ -82,7 +82,6 @@ function (): \Generator
{
$this->logger->debug('COMMIT');

/** @psalm-suppress TooManyTemplateParams */
yield $this->transaction->commit();
}
// @codeCoverageIgnoreStart
Expand Down

0 comments on commit 2abeb62

Please sign in to comment.