mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-18 20:04:28 +00:00
Cleanup in src/, adding namespaces, removing php closing tag and general code cleanup
This commit is contained in:
@ -1,11 +1,10 @@
|
||||
<?php
|
||||
namespace Moserware\Skills;
|
||||
<?php namespace Moserware\Skills;
|
||||
|
||||
class Teams
|
||||
{
|
||||
public static function concat(/*variable arguments*/)
|
||||
{
|
||||
$args = \func_get_args();
|
||||
$args = func_get_args();
|
||||
$result = array();
|
||||
|
||||
foreach ($args as &$currentTeam) {
|
||||
@ -15,5 +14,4 @@ class Teams
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
?>
|
||||
}
|
Reference in New Issue
Block a user