trueskill/src/Teams.php

19 lines
325 B
PHP
Raw Normal View History

2022-07-05 13:55:47 +00:00
<?php
namespace DNW\Skills;
class Teams
{
2023-08-01 12:26:38 +00:00
public static function concat(Team ...$args/*variable arguments*/): array
{
2022-07-05 13:55:47 +00:00
$result = [];
foreach ($args as $currentTeam) {
$localCurrentTeam = $currentTeam;
$result[] = $localCurrentTeam;
}
return $result;
}
2022-07-05 13:55:47 +00:00
}