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