| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function create($width, $height, $index = 0) |
||
| 17 | { |
||
| 18 | // TODO set proper default size & font. |
||
| 19 | $background = new Quad(); //BgRacePlayerName |
||
| 20 | $background->setBackgroundColor('fff') |
||
| 21 | ->setPosition(0, -$height + 0.25) |
||
| 22 | ->setSize($width, 0.25); |
||
| 23 | |||
| 24 | return $background; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |