Completed
Push — master ( 03433f...b6aaec )
by Andrii
04:09
created

ItemsQuantity   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 7
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getText() 0 4 1
1
<?php
2
3
namespace hipanel\modules\finance\logic\bill;
4
5
use Yii;
6
7
class ItemsQuantity extends AbstractBillQuantity
8
{
9
    public function getText()
10
    {
11
        return Yii::t('hipanel:finance', '{quantity, plural, one{# item} other{# items}}', ['quantity' => $this->getValue()]);
12
    }
13
}
14