mirror of
https://github.com/furyfire/trueskill.git
synced 2025-11-04 10:12:28 +01:00
19 lines
301 B
PHP
19 lines
301 B
PHP
|
|
<?php
|
||
|
|
namespace Moserware\Skills;
|
||
|
|
|
||
|
|
class Teams
|
||
|
|
{
|
||
|
|
public static function concat(/*variable arguments*/)
|
||
|
|
{
|
||
|
|
$args = \func_get_args();
|
||
|
|
$result = array();
|
||
|
|
|
||
|
|
foreach ($args as $currentTeam) {
|
||
|
|
$result[] = $currentTeam;
|
||
|
|
}
|
||
|
|
|
||
|
|
return $result;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|