Update composer.json #216
Annotations
2 warnings
mutation / PHP 8.2-ubuntu-latest:
src/ColumnFormatterTrait.php#L21
Escaped Mutant for Mutator "IfNegation":
--- Original
+++ New
@@ @@
*/
private function setColumn(string|ExpressionInterface $column, ?string $table = null) : void
{
- if (is_string($column)) {
+ if (!is_string($column)) {
if ($table) {
$this->column = $table . '.' . $column;
} else {
|
mutation / PHP 8.2-ubuntu-latest:
src/Filter/EqualsEmpty.php#L69
Escaped Mutant for Mutator "UnwrapArrayValues":
--- Original
+++ New
@@ @@
*/
public function toCriteriaArray() : array
{
- $filters = array_values($this->filters);
+ $filters = $this->filters;
return (new Any(...$filters))->toCriteriaArray();
}
}
|