| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | class FootprintRepository extends AbstractPartsContainingRepository |
||
| 26 | { |
||
| 27 | public function getParts(object $element, array $order_by = ['name' => 'ASC']): array |
||
| 28 | { |
||
| 29 | return $this->getPartsByField($element, $order_by, 'footprint'); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getPartsCount(object $element): int |
||
| 35 | } |
||
| 36 | } |