$expression->getType()
returns database type but not an abstract type
#1184
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/DDLQueryBuilder.php#L56
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$type = preg_replace('/\\s+DEFAULT\\s+(["\']?\\w*["\']?)/i', '', $type);
$multiAlterStatement[] = "ALTER COLUMN {$columnName} SET DEFAULT {$matches[1]}";
}
- $type = preg_replace('/\\s+NOT\\s+NULL/i', '', $type, -1, $count);
+ $type = preg_replace('/\\s+NOT\\s+NULL/i', '', $type, -2, $count);
if ($count) {
$multiAlterStatement[] = "ALTER COLUMN {$columnName} SET NOT NULL";
} else {
|
The logs for this run have expired and are no longer available.
Loading