Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
16 | 2 | public function getValue(IRow $source) |
|
17 | { |
||
18 | 2 | $result = $this->value($source, $this->sourceName); |
|
19 | 2 | if (empty($result)) { |
|
20 | 1 | return 0; |
|
21 | } else { |
||
22 | 1 | return '<span title="' . date('Y-m-d H:i:s', intval($result)) . '">' . date($this->format, intval($result)) . '</span>'; |
|
23 | } |
||
26 |