| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | 4 | public function loadVars(string $source, $array): array |
|
| 23 | { |
||
| 24 | 4 | $result = []; |
|
| 25 | 4 | $entries = new Entries\Entry(); |
|
| 26 | 4 | foreach ($array as $postedKey => $posted) { |
|
| 27 | 4 | $entry = clone $entries; |
|
| 28 | 4 | $entry->setEntry($source, strval($postedKey), $posted); |
|
| 29 | 4 | $result[] = $entry; |
|
| 30 | } |
||
| 31 | 4 | return $result; |
|
| 32 | } |
||
| 34 |