Conditions | 5 |
Paths | 6 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
17 | 10 | public function getValue() { |
|
18 | 10 | if ($this->value !== null) { |
|
19 | 5 | return $this->value; |
|
20 | } |
||
21 | |||
22 | 5 | if (!empty($this->row[$this->column])) { |
|
23 | 3 | $value = trim($this->row[$this->column]); |
|
24 | 3 | if ($this->numberDelimiter !== null) { |
|
25 | 1 | $value = str_replace($this->numberDelimiter, '.', $value); |
|
26 | } |
||
27 | |||
28 | 3 | if ($value) { |
|
29 | 2 | return $value; |
|
30 | } |
||
46 | } |