| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function create($text, $translate = false, $type = self::TYPE_NORMAL) |
||
| 18 | { |
||
| 19 | $label = new Label(); |
||
| 20 | $label->setText($text) |
||
| 21 | ->setTextSize(2) |
||
| 22 | ->setHeight(4) |
||
| 23 | ->setTranslate($translate); |
||
| 24 | |||
| 25 | if ($type == self::TYPE_TITLE) { |
||
| 26 | $label->setTextFont('RajdhaniMono'); |
||
| 27 | } |
||
| 28 | |||
| 29 | return $label; |
||
| 30 | } |
||
| 31 | } |
||
| 32 |