mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
20 lines
354 B
PHP
20 lines
354 B
PHP
<?php
|
|
namespace Moserware\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;
|
|
}
|
|
}
|
|
?>
|