trueskill/src/Teams.php

20 lines
338 B
PHP
Raw Normal View History

2022-07-05 13:55:47 +00:00
<?php
namespace DNW\Skills;
class Teams
{
public static function concat(/*variable arguments*/)
{
$args = func_get_args();
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
}