mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 10:12:28 +01: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;
 | 
						|
    }
 | 
						|
}
 |