| Conditions | 2 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function format(): string |
||
| 30 | { |
||
| 31 | $text = Yii::t('hipanel:finance', '{units, plural, one{# unit} other{# units}} × {quantity, plural, one{# day} other{# days}}', [ |
||
| 32 | 'units' => $this->model->quantity / ($this->model->bill->quantity ?: 1), |
||
| 33 | 'quantity' => round($this->model->bill->quantity * $this->getNumberOfDays()), |
||
| 34 | ]); |
||
| 35 | |||
| 36 | return $text; |
||
| 37 | } |
||
| 38 | |||
| 49 |