Skip to content

Merge pull request #84 from oleg-andreyev/dbal-4 #294

Merge pull request #84 from oleg-andreyev/dbal-4

Merge pull request #84 from oleg-andreyev/dbal-4 #294

Triggered via push March 8, 2024 23:59
Status Success
Total duration 1m 38s
Artifacts
Matrix: phpunit-mysql
Matrix: quality-checks
Fit to window
Zoom out
Zoom in

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; }