trueskill/src/Teams.php

19 lines
313 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills;
class Teams
{
2022-07-05 16:21:06 +02:00
public static function concat(...$args/*variable arguments*/)
{
2022-07-05 15:55:47 +02:00
$result = [];
foreach ($args as $currentTeam) {
$localCurrentTeam = $currentTeam;
$result[] = $localCurrentTeam;
}
return $result;
}
2022-07-05 15:55:47 +02:00
}