More tests

This commit is contained in:
2024-05-14 09:41:17 +00:00
parent 46dcbed28b
commit 5cf6acdfb1
6 changed files with 146 additions and 10 deletions

View File

@ -11,13 +11,6 @@ class Teams
*/
public static function concat(Team ...$args/*variable arguments*/): array
{
$result = [];
foreach ($args as $currentTeam) {
$localCurrentTeam = $currentTeam;
$result[] = $localCurrentTeam;
}
return $result;
return $args;
}
}