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