Strict code coverage.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-05-14 08:46:43 +00:00
parent c33f62af2f
commit 46dcbed28b
16 changed files with 195 additions and 54 deletions

View File

@ -19,7 +19,7 @@ class HashMap
*/
private array $hashToKey = [];
public function getValue(object $key): object
public function getValue(object $key): mixed
{
$hash = spl_object_id($key);

View File

@ -8,8 +8,4 @@ use DNW\Skills\Numerics\Range;
class PlayersRange extends Range
{
protected static function create(int $min, int $max): static
{
return new static($min, $max);
}
}

View File

@ -8,8 +8,4 @@ use DNW\Skills\Numerics\Range;
class TeamsRange extends Range
{
protected static function create(int $min, int $max): static
{
return new static($min, $max);
}
}