| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 2 | private function calculateTimeCardsCycleTime() |
|
| 41 | { |
||
| 42 | 2 | $timeCards = $this->timeCards->getFromHistoryCards($this->historyCardsCollection); |
|
| 43 | |||
| 44 | 2 | $cycleTimeCalculator = new CycleTimeCalculator($timeCards, $this->historyCardsCollection); |
|
| 45 | 2 | $cycleTimeCalculator->execute(); |
|
| 46 | |||
| 47 | |||
| 48 | 2 | return $cycleTimeCalculator->getTimeCards(); |
|
| 49 | } |
||
| 50 | } |