Conditions | 4 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 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 |