Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
57 | public function rowData($attribute, array $template) |
||
58 | { |
||
59 | if (count($template)) { |
||
60 | $this->data[$attribute] = []; |
||
61 | foreach ($template as $key => $value) { |
||
62 | $this->data[$attribute][$key] = Helper::compileContent($value, $this->data, $this->row); |
||
63 | } |
||
64 | } |
||
65 | |||
66 | return $this; |
||
67 | } |
||
68 | |||
77 |