Enable BC test #1202
Triggered via pull request
November 12, 2023 02:16
Status
Success
Total duration
18m 39s
Artifacts
–
Annotations
4 warnings
PHP 8-ubuntu-latest:
src/ArrayParser.php#L35
Escaped Mutant for Mutator "Increment":
--- Original
+++ New
@@ @@
private function parseArray(string $value, int &$i = 0) : array
{
if ($value[++$i] === '}') {
- ++$i;
+ --$i;
return [];
}
for ($result = [];; ++$i) {
|
PHP 8-ubuntu-latest:
src/Connection.php#L32
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$command->setSql($sql);
}
if ($this->logger !== null) {
- $command->setLogger($this->logger);
+
}
if ($this->profiler !== null) {
$command->setProfiler($this->profiler);
|
PHP 8-ubuntu-latest:
src/Schema.php#L786
Escaped Mutant for Mutator "UnwrapStrReplace":
--- Original
+++ New
@@ @@
} else {
$column->dbType($info['data_type']);
}
- $column->enumValues($info['enum_values'] !== null ? explode(',', str_replace(["''"], ["'"], $info['enum_values'])) : null);
+ $column->enumValues($info['enum_values'] !== null ? explode(',', $info['enum_values']) : null);
$column->unsigned(false);
// has no meaning in PG
$column->primaryKey((bool) $info['is_pkey']);
|
PHP 8.1-ubuntu-latest:
src/ArrayParser.php#L35
Escaped Mutant for Mutator "Increment":
--- Original
+++ New
@@ @@
private function parseArray(string $value, int &$i = 0) : array
{
if ($value[++$i] === '}') {
- ++$i;
+ --$i;
return [];
}
for ($result = [];; ++$i) {
|