mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00: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;
|
||
|
}
|
||
|
}
|
||
|
?>
|