Enable BC test #1202
Annotations
3 warnings
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) {
|
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);
|
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']);
|
The logs for this run have expired and are no longer available.
Loading