Continuous Integration #229
Annotations
10 warnings
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, ramsey/composer-install@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
src/ConnectionTrait.php#L96
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$this->increaseAttemptCount();
goto attempt;
}
- $this->resetAttemptCount();
+
/** @psalm-suppress PossiblyUndefinedVariable */
return $result;
}
|
src/ConnectionTrait.php#L175
Escaped Mutant for Mutator "LogicalOr":
--- Original
+++ New
@@ @@
}
public function beginTransaction()
{
- if ($this->hasBeenClosedWithAnOpenTransaction || 0 !== $this->getTransactionNestingLevel()) {
+ if ($this->hasBeenClosedWithAnOpenTransaction && 0 !== $this->getTransactionNestingLevel()) {
return @parent::beginTransaction();
}
return $this->doWithRetry(function () : bool {
|
src/Statement.php#L52
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
$this->stmt = $this->conn->getWrappedConnection()->prepare($this->sql);
/** @var mixed $value */
foreach ($this->boundValues as $param => $value) {
- parent::bindValue($param, $value, $this->types[$param] ?? ParameterType::STRING);
+ parent::bindValue($param, $value, ParameterType::STRING ?? $this->types[$param]);
}
}
public function bindValue($param, $value, $type = ParameterType::STRING)
|
src/Statement.php#L104
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
private function executeWithRetry(callable $callable, ...$params)
{
$parentCall = \Closure::fromCallable($callable);
- $parentCall->bindTo($this, parent::class);
+
try {
attempt:
$result = $parentCall(...$params);
|
src/Statement.php#L114
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (!$this->retriableConnection->canTryAgain($e, $this->sql)) {
throw $e;
}
- $this->retriableConnection->increaseAttemptCount();
+
$this->recreateStatement();
goto attempt;
}
|
src/Statement.php#L120
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$this->recreateStatement();
goto attempt;
}
- $this->retriableConnection->resetAttemptCount();
+
/** @psalm-suppress PossiblyUndefinedVariable */
return $result;
}
}
|
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
The logs for this run have expired and are no longer available.
Loading