| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class AbstractController extends Controller |
||
| 11 | { |
||
| 12 | |||
| 13 | abstract protected function getNormalizer(): NormalizerInterface; |
||
| 14 | abstract protected function getAttributeRepository(): AttributeRepositoryInterface; |
||
| 15 | |||
| 16 | protected function normalizeProduct(EntityWithFamilyVariantInterface $product) |
||
| 36 |