trueskill/src/Teams.php

17 lines
341 B
PHP
Raw Normal View History

2022-07-05 13:33:34 +00:00
<?php namespace DNW\Skills;
class Teams
{
public static function concat(/*variable arguments*/)
{
$args = func_get_args();
$result = array();
foreach ($args as $currentTeam) {
$localCurrentTeam = $currentTeam;
$result[] = $localCurrentTeam;
}
return $result;
}
}