Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
50 | 3 | private function calculateTimeCardsCycleTime() |
|
51 | { |
||
52 | 3 | $timeCards = $this->timeCards->getFromHistoryCards($this->historyCardsCollection); |
|
53 | |||
54 | 3 | $cycleTimeCalculator = new CycleTimeCalculator($timeCards, $this->historyCardsCollection); |
|
55 | 3 | $cycleTimeCalculator->execute(); |
|
56 | |||
57 | |||
58 | 3 | return $cycleTimeCalculator->getTimeCards(); |
|
59 | } |
||
60 | } |