Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ProductPriceManager.php 567B

123456789101112131415161718192021
  1. <?php
  2. namespace common\logic\Product\ProductPrice\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Product\ProductPrice\Repository\ProductPriceRepository;
  5. use common\logic\Product\ProductPrice\Service\ProductPriceBuilder;
  6. use common\logic\Product\ProductPrice\Service\ProductPriceDefinition;
  7. /**
  8. * @mixin ProductPriceDefinition
  9. * @mixin ProductPriceRepository
  10. * @mixin ProductPriceBuilder
  11. */
  12. class ProductPriceManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return ProductPriceContainer::class;
  17. }
  18. }