Merge pull request #84 from oleg-andreyev/dbal-4 #294
continuous-integration.yml
on: push
Matrix: phpunit-mysql
Matrix: quality-checks
Annotations
2 warnings
Infection (PHP 8.3 / MySQL 8.0):
src/ConnectionTrait.php#L117
Escaped Mutant for Mutator "PublicVisibility":
--- Original
+++ New
@@ @@
/**
* @internal
*/
- public function resetAttemptCount() : void
+ protected function resetAttemptCount() : void
{
$this->currentAttempts = 0;
}
|
Infection (PHP 8.3 / MySQL 8.0):
src/Statement.php#L101
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (!$this->retriableConnection->canTryAgain($e, $this->sql)) {
throw $e;
}
- $this->retriableConnection->increaseAttemptCount();
+
$this->recreateStatement();
goto attempt;
}
|