Refactor DMLQueryBuilder #1098
Annotations
10 warnings
Run infection.:
src/AbstractTokenizer.php#L106
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$this->tokenStack->push($token[0]);
/** @psalm-var SqlToken */
$this->currentToken = $this->tokenStack->top();
- $length = 0;
+ $length = -1;
while (!$this->isEof()) {
if ($this->isWhitespace($length) || $this->isComment($length)) {
$this->addTokenFromBuffer();
|
Run infection.:
src/AbstractTokenizer.php#L127
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$this->buffer .= $this->substring(1);
$this->advance(1);
}
- $this->addTokenFromBuffer();
+
if ($token->getHasChildren() && $token[-1] instanceof SqlToken && !$token[-1]->getHasChildren()) {
unset($token[-1]);
}
|
Run infection.:
src/AbstractTokenizer.php#L306
Escaped Mutant for Mutator "Plus":
--- Original
+++ New
@@ @@
if ($offset === null) {
$offset = $this->offset;
}
- if ($offset + mb_strlen($string, 'UTF-8') > $this->length) {
+ if ($offset - mb_strlen($string, 'UTF-8') > $this->length) {
return $this->length;
}
$afterIndexOf = mb_strpos($this->sql, $string, $offset, 'UTF-8');
|
Run infection.:
src/AbstractTokenizer.php#L306
Escaped Mutant for Mutator "GreaterThan":
--- Original
+++ New
@@ @@
if ($offset === null) {
$offset = $this->offset;
}
- if ($offset + mb_strlen($string, 'UTF-8') > $this->length) {
+ if ($offset + mb_strlen($string, 'UTF-8') >= $this->length) {
return $this->length;
}
$afterIndexOf = mb_strpos($this->sql, $string, $offset, 'UTF-8');
|
Run infection.:
src/AbstractTokenizer.php#L310
Escaped Mutant for Mutator "MBString":
--- Original
+++ New
@@ @@
if ($offset + mb_strlen($string, 'UTF-8') > $this->length) {
return $this->length;
}
- $afterIndexOf = mb_strpos($this->sql, $string, $offset, 'UTF-8');
+ $afterIndexOf = strpos($this->sql, $string, $offset);
if ($afterIndexOf === false) {
$afterIndexOf = $this->length;
} else {
|
Run infection.:
src/AbstractTokenizer.php#L315
Escaped Mutant for Mutator "MBString":
--- Original
+++ New
@@ @@
if ($afterIndexOf === false) {
$afterIndexOf = $this->length;
} else {
- $afterIndexOf += mb_strlen($string, 'UTF-8');
+ $afterIndexOf += strlen($string);
}
return $afterIndexOf;
}
|
Run infection.:
src/AbstractTokenizer.php#L333
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (!$isIdentifier && !$isStringLiteral) {
return false;
}
- $this->addTokenFromBuffer();
+
$this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_IDENTIFIER : SqlToken::TYPE_STRING_LITERAL)->content(is_string($content) ? $content : $this->substring($length))->startOffset($this->offset)->endOffset($this->offset + $length);
return true;
}
|
Run infection.:
src/AbstractTokenizer.php#L336
Escaped Mutant for Mutator "Ternary":
--- Original
+++ New
@@ @@
return false;
}
$this->addTokenFromBuffer();
- $this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_IDENTIFIER : SqlToken::TYPE_STRING_LITERAL)->content(is_string($content) ? $content : $this->substring($length))->startOffset($this->offset)->endOffset($this->offset + $length);
+ $this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_STRING_LITERAL : SqlToken::TYPE_IDENTIFIER)->content(is_string($content) ? $content : $this->substring($length))->startOffset($this->offset)->endOffset($this->offset + $length);
return true;
}
/**
|
Run infection.:
src/AbstractTokenizer.php#L337
Escaped Mutant for Mutator "Ternary":
--- Original
+++ New
@@ @@
return false;
}
$this->addTokenFromBuffer();
- $this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_IDENTIFIER : SqlToken::TYPE_STRING_LITERAL)->content(is_string($content) ? $content : $this->substring($length))->startOffset($this->offset)->endOffset($this->offset + $length);
+ $this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_IDENTIFIER : SqlToken::TYPE_STRING_LITERAL)->content(is_string($content) ? $this->substring($length) : $content)->startOffset($this->offset)->endOffset($this->offset + $length);
return true;
}
/**
|
Run infection.:
src/AbstractTokenizer.php#L341
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
}
$this->addTokenFromBuffer();
$this->currentToken[] = (new SqlToken())->type($isIdentifier ? SqlToken::TYPE_IDENTIFIER : SqlToken::TYPE_STRING_LITERAL)->content(is_string($content) ? $content : $this->substring($length))->startOffset($this->offset)->endOffset($this->offset + $length);
- return true;
+ return false;
}
/**
* Determines whether there is an operator at the current offset and adds it to the token children.
|
The logs for this run have expired and are no longer available.
Loading