Skip to content

Update rector/rector requirement from ^0.19.0 to ^1.0.0 #251

Update rector/rector requirement from ^0.19.0 to ^1.0.0

Update rector/rector requirement from ^0.19.0 to ^1.0.0 #251

Triggered via pull request February 7, 2024 09:04
Status Success
Total duration 56s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

4 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/CompareFilter.php#L33
Escaped Mutant for Mutator "CloneRemoval": --- Original +++ New @@ @@ } public function withIgnoreNull(bool $ignoreNull = true) : static { - $new = clone $this; + $new = $this; $new->ignoreNull = $ignoreNull; return $new; }
mutation / PHP 8.2-ubuntu-latest: src/Filter/CompareFilter.php#L63
Escaped Mutant for Mutator "UnwrapArrayMap": --- Original +++ New @@ @@ } protected function formatValues(array $values) : array { - return array_map([$this, 'formatValue'], $values); + return $values; } public function toCriteriaArray() : array {
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(); } }