Skip to content

feat(option): add Option::zip(), Option::zipWith() and Option::unzip() methods #606

feat(option): add Option::zip(), Option::zipWith() and Option::unzip() methods

feat(option): add Option::zip(), Option::zipWith() and Option::unzip() methods #606

Triggered via pull request December 12, 2023 03:41
Status Failure
Total duration 1m 46s
Artifacts

mutation-tests.yml

on: pull_request
Matrix: mutation tests
Fit to window
Zoom out
Zoom in

Annotations

1 error and 1 warning
mutation tests (8.2, ubuntu-latest)
Process completed with exit code 2.
mutation tests (8.2, ubuntu-latest): src/Psl/Option/Option.php#L373
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (!is_array($this->option[0])) { return [none(), none()]; } - if (!array_key_exists(0, $this->option[0]) || !array_key_exists(1, $this->option[0])) { + if (!array_key_exists(1, $this->option[0]) || !array_key_exists(1, $this->option[0])) { return [none(), none()]; } [$a, $b] = $this->option[0];