Skip to content

close #95

close #95 #148

Triggered via push January 5, 2025 12:23
Status Success
Total duration 46s
Artifacts

test.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

24 warnings
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L110
Escaped Mutant for Mutator "DoWhile": @@ @@ $c = $c[$i = 0]; do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); - } while (isset($c[++$i])); + } while (false); return $s . $endChar; }, $value, -1, $charCount); return $value ?? '';
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Coalesce": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s .= sprintf('\x%02X', ord($c[$i])) ?? $map[$c[$i]]; } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Assignment": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s = $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "Concat": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $endChar . $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.4 test on ubuntu-24.04: src/Processors/StringProcessor.php#L117
Escaped Mutant for Mutator "DecrementInteger": @@ @@ $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; - }, $value, -1, $charCount); + }, $value, -2, $charCount); return $value ?? ''; } /**
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L110
Escaped Mutant for Mutator "DoWhile": @@ @@ $c = $c[$i = 0]; do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); - } while (isset($c[++$i])); + } while (false); return $s . $endChar; }, $value, -1, $charCount); return $value ?? '';
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Coalesce": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s .= sprintf('\x%02X', ord($c[$i])) ?? $map[$c[$i]]; } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Assignment": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s = $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "Concat": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $endChar . $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.3 test on ubuntu-24.04: src/Processors/StringProcessor.php#L117
Escaped Mutant for Mutator "DecrementInteger": @@ @@ $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; - }, $value, -1, $charCount); + }, $value, -2, $charCount); return $value ?? ''; } /**
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L110
Escaped Mutant for Mutator "DoWhile": @@ @@ $c = $c[$i = 0]; do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); - } while (isset($c[++$i])); + } while (false); return $s . $endChar; }, $value, -1, $charCount); return $value ?? '';
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Coalesce": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s .= sprintf('\x%02X', ord($c[$i])) ?? $map[$c[$i]]; } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Assignment": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s = $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "Concat": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $endChar . $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.1 test on ubuntu-24.04: src/Processors/StringProcessor.php#L117
Escaped Mutant for Mutator "DecrementInteger": @@ @@ $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; - }, $value, -1, $charCount); + }, $value, -2, $charCount); return $value ?? ''; } /**
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L110
Escaped Mutant for Mutator "DoWhile": @@ @@ $c = $c[$i = 0]; do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); - } while (isset($c[++$i])); + } while (false); return $s . $endChar; }, $value, -1, $charCount); return $value ?? '';
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Coalesce": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s .= sprintf('\x%02X', ord($c[$i])) ?? $map[$c[$i]]; } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L111
Escaped Mutant for Mutator "Assignment": @@ @@ $s = $startChar; $c = $c[$i = 0]; do { - $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); + $s = $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; }, $value, -1, $charCount);
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "Concat": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $endChar . $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L114
Escaped Mutant for Mutator "ConcatOperandRemoval": @@ @@ do { $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); - return $s . $endChar; + return $s; }, $value, -1, $charCount); return $value ?? ''; }
PHP 8.2 test on ubuntu-24.04: src/Processors/StringProcessor.php#L117
Escaped Mutant for Mutator "DecrementInteger": @@ @@ $s .= $map[$c[$i]] ?? sprintf('\x%02X', ord($c[$i])); } while (isset($c[++$i])); return $s . $endChar; - }, $value, -1, $charCount); + }, $value, -2, $charCount); return $value ?? ''; } /**