| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 62 | public function getEvidenceObjects() |
||
| 63 | { |
||
| 64 | $contents = []; |
||
| 65 | foreach ($this->engine->getColumnsFromAbraFlexi(array_key_exists('detail', |
||
| 66 | $this->conditions) ? $this->conditions['detail'] : 'full', |
||
| 67 | $this->conditions) as $pos => $recordData) { |
||
| 68 | $contents[$pos] = clone $this->engine; |
||
| 69 | $contents[$pos]->setData($recordData, true); |
||
| 70 | } |
||
| 71 | return $contents; |
||
| 72 | } |
||
| 84 |