Naming tweak

This commit is contained in:
Jeff Moser
2010-10-14 21:51:43 -04:00
parent 110463ad49
commit 455f2b3061
66 changed files with 24 additions and 26 deletions

19
Skills/Teams.php Normal file
View 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;
}
}
?>