misc: replace regex-based type parser with character-based one #774
Annotations
1 warning
src/Type/Parser/LexingParser.php#L44
Escaped Mutant for Mutator "NotIdentical":
--- Original
+++ New
@@ @@
$current .= $char;
}
} elseif ($char === '"' || $char === "'") {
- if ($current !== null) {
+ if ($current === null) {
$symbols[] = $current;
$current = null;
}
|
The logs for this run have expired and are no longer available.
Loading