Conditions | 7 |
Paths | 8 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | foreach ($next as $team) { |
||
46 | if ($blank) { |
||
47 | $this->to->addTeam(new BlankTeam($this.' - '.$i, $team)); |
||
48 | $i++; |
||
49 | } |
||
50 | else $team->sumPoints += $this->from->progressPoints; |
||
51 | } |
||
52 | |||
53 | $this->from->addProgressed($next); |
||
54 | if (!$blank) $this->to->addTeam($next); |
||
55 | return $this; |
||
56 | } |
||
57 | |||
59 |