| Conditions | 6 |
| Paths | 4 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function _renderValue($row) |
||
| 40 | { |
||
| 41 | if (is_array($row)) { |
||
| 42 | |||
| 43 | if (isset($row[$this->value]) && $row[$this->value] !== null) { |
||
| 44 | return $row[$this->value]; |
||
| 45 | } |
||
| 46 | |||
| 47 | } elseif (isset($row->{$this->value}) && $row->{$this->value} !== null) { |
||
| 48 | return $row->{$this->value}; |
||
| 49 | } |
||
| 50 | |||
| 51 | return $this->emptyValue; |
||
| 52 | } |
||
| 53 | } |