Skip to content

✨ Added the ability to get progressed teams from a progressi… #40

✨ Added the ability to get progressed teams from a progressi…

✨ Added the ability to get progressed teams from a progressi… #40

Triggered via push April 29, 2023 14:36
Status Success
Total duration 4m 56s
Artifacts

php-test.yml

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

Annotations

66 warnings
build (ubuntu-latest, 8.0, pcov)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.0, xdebug)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }
build (ubuntu-latest, 8.0, --prefer-lowest, pcov)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.0, --prefer-lowest, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }
build (ubuntu-latest, 8.1, xdebug)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, xdebug): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }
build (ubuntu-latest, 8.1, pcov)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov)
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/cache@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(-1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L55
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ */ public static function fromArray(array $data) : BaseContainer { - $container = new self(0); + $container = new self(1); $container->insertFlat(...$data); return $container; }
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/BaseContainer.php#L90
Escaped Mutant for Mutator "GreaterThan": --- Original +++ New @@ @@ */ public function get() : array { - if (count($this->children) > 0) { + if (count($this->children) >= 0) { $values = [$this->values]; foreach ($this->children as $child) { $values[] = $child->get();
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L199
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function whereId(int|string $id) : ContainerQuery { $this->filters[] = static function ($object) use($id) { - return $object instanceof WithId && $object->getId() === $id; + return true && $object->getId() === $id; }; return $this; }
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return -1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L225
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if (is_null($callback)) { $this->sortClosure = static function ($a, $b) { if ($a === $b) { - return 0; + return 1; } return $a < $b ? -1 : 1; };
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "LessThan": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a <= $b ? -1 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -2 : 1; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L227
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ if ($a === $b) { return 0; } - return $a < $b ? -1 : 1; + return $a < $b ? -1 : 2; }; } else { $this->sortClosure = $callback;
build (ubuntu-latest, 8.1, --ignore-platform-req=php, pcov): src/TournamentGenerator/Containers/ContainerQuery.php#L324
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ } // Compare values if ($property1 === $property2) { - return 0; + return -1; } return $property1 < $property2 ? -1 : 1; } }