Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function getEvidenceContent() |
||
48 | { |
||
49 | $contents = []; |
||
50 | foreach ($this->engine->getColumnsFromFlexibee(array_key_exists('detail', |
||
51 | $this->conditions) ? $this->conditions['detail'] : 'full', |
||
52 | $this->conditions) as $pos => $recordData) { |
||
53 | $contents[$pos] = clone $this->engine; |
||
54 | $contents[$pos]->setData($recordData, true); |
||
55 | } |
||
56 | return $contents; |
||
57 | } |
||
58 | |||
69 |