Skip to content

Update psalm, improve it config #220

Update psalm, improve it config

Update psalm, improve it config #220

Triggered via pull request July 31, 2023 13:08
Status Success
Total duration 47s
Artifacts

mutation.yml

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

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(); } }