Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
58 | public function getEvidenceObjects() |
||
59 | { |
||
60 | $contents = []; |
||
61 | foreach ($this->engine->getColumnsFromFlexibee(array_key_exists('detail', |
||
62 | $this->conditions) ? $this->conditions['detail'] : 'full', |
||
63 | $this->conditions) as $pos => $recordData) { |
||
64 | $contents[$pos] = clone $this->engine; |
||
65 | $contents[$pos]->setData($recordData, true); |
||
66 | } |
||
67 | return $contents; |
||
68 | } |
||
69 | |||
80 |