| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 5 | public function getFromHistoryCards(HistoryCards $historyCards) :array |
|
| 24 | { |
||
| 25 | 5 | $this->historyCards = $historyCards; |
|
| 26 | 5 | $this->cardHistoryCollection = $historyCards->getCardHistories(); |
|
| 27 | |||
| 28 | 5 | foreach ($this->cardHistoryCollection as $cardHistory) { |
|
| 29 | 3 | $this->createTimeCardIfNotExists($cardHistory); |
|
| 30 | } |
||
| 31 | |||
| 32 | 5 | return $this->getCardTimeData(); |
|
| 33 | } |
||
| 34 | |||
| 63 |