Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | 'Единица' => 'unit', |
||
40 | 'Коэффициент' => 'rate', |
||
41 | ]; |
||
42 | } |
||
43 | |||
44 | 1 | public function getType() |
|
45 | { |
||
46 | 1 | if (!$this->type && ($id = $this->id)) { |
|
47 | 1 | if ($type = $this->owner->offerPackage->xpath("//c:ТипЦены[c:Ид = '{$id}']")) { |
|
48 | 1 | $this->type = new Simple($this->owner, $type[0]); |
|
64 | } |