| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 7 | public function create($width, $height, $index = 0) |
|
| 17 | { |
||
| 18 | 7 | $index = $index % 2; |
|
| 19 | |||
| 20 | 7 | $background = new Quad(); |
|
| 21 | 7 | $background->setSize($width, $height); |
|
| 22 | 7 | if ($index == 0) { |
|
| 23 | 7 | $background->setBackgroundColor("eee5"); |
|
| 24 | } else { |
||
| 25 | 6 | $background->setBackgroundColor("eee3"); |
|
| 26 | } |
||
| 27 | 7 | return $background; |
|
| 28 | } |
||
| 29 | } |
||
| 30 |