Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 10.53% |
Changes | 0 |
1 | <?php |
||
11 | final class CommodityConsumption implements CommodityConsumptionInterface |
||
12 | { |
||
13 | private CommodityRepositoryInterface $commodityRepository; |
||
14 | |||
15 | 2 | public function __construct( |
|
16 | CommodityRepositoryInterface $commodityRepository |
||
17 | ) { |
||
18 | 2 | $this->commodityRepository = $commodityRepository; |
|
19 | } |
||
20 | |||
21 | public function getConsumption( |
||
49 | } |
||
50 | } |
||
51 |