| Conditions | 4 |
| Paths | 3 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 88 | protected function setupValue() |
||
| 89 | { |
||
| 90 | if (is_array($this->data) || $this->data instanceof \ArrayAccess) { |
||
| 91 | $this->value = array_get($this->data, $this->column->getName()); |
||
| 92 | } elseif (is_object($this->data)) { |
||
| 93 | $this->value = object_get($this->data, $this->column->getName()); |
||
| 94 | } |
||
| 95 | } |
||
| 96 | |||
| 107 |