mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
|
|
namespace DNW\Skills;
|
|
|
|
class Teams
|
|
{
|
|
public static function concat(/*variable arguments*/)
|
|
{
|
|
$args = func_get_args();
|
|
$result = [];
|
|
|
|
foreach ($args as $currentTeam) {
|
|
$localCurrentTeam = $currentTeam;
|
|
$result[] = $localCurrentTeam;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|