diff --git a/src/Sql/AmpPosgreSQL/AmpPostgreSQLResultSet.php b/src/Sql/AmpPosgreSQL/AmpPostgreSQLResultSet.php index 5da553d..ab194ad 100644 --- a/src/Sql/AmpPosgreSQL/AmpPostgreSQLResultSet.php +++ b/src/Sql/AmpPosgreSQL/AmpPostgreSQLResultSet.php @@ -45,9 +45,6 @@ public function __construct(object $originalResultSet) $this->originalResultSet = $originalResultSet; } - /** - * {@inheritdoc} - */ public function advance(): Promise { $this->advanceCalled = true; @@ -69,9 +66,6 @@ public function advance(): Promise // @codeCoverageIgnoreEnd } - /** - * {@inheritdoc} - */ public function getCurrent(): ?array { try @@ -96,11 +90,6 @@ public function getCurrent(): ?array // @codeCoverageIgnoreEnd } - /** - * {@inheritdoc} - * - * @psalm-suppress MixedReturnTypeCoercion - */ public function lastInsertId(?string $sequence = null): Promise { return call( @@ -142,9 +131,6 @@ function (): \Generator ); } - /** - * {@inheritdoc} - */ public function affectedRows(): int { try diff --git a/src/Sql/AmpPosgreSQL/AmpPostgreSQLTransaction.php b/src/Sql/AmpPosgreSQL/AmpPostgreSQLTransaction.php index d2493e6..22a6ef7 100644 --- a/src/Sql/AmpPosgreSQL/AmpPostgreSQLTransaction.php +++ b/src/Sql/AmpPosgreSQL/AmpPostgreSQLTransaction.php @@ -82,7 +82,6 @@ function (): \Generator { $this->logger->debug('COMMIT'); - /** @psalm-suppress TooManyTemplateParams */ yield $this->transaction->commit(); } // @codeCoverageIgnoreStart