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