mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-18 20:04:28 +00:00
Naming tweak
This commit is contained in:
19
Skills/Teams.php
Normal file
19
Skills/Teams.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user