Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ProducerPriceRangeManager.php 521B

12345678910111213141516171819
  1. <?php
  2. namespace common\logic\Producer\ProducerPriceRange\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Producer\ProducerPriceRange\Repository\ProducerPriceRangeRepository;
  5. use common\logic\Producer\ProducerPriceRange\Service\ProducerPriceRangeBuilder;
  6. /**
  7. * @mixin ProducerPriceRangeRepository
  8. * @mixin ProducerPriceRangeBuilder
  9. */
  10. class ProducerPriceRangeManager extends AbstractManager
  11. {
  12. public function getContainerFqcn(): string
  13. {
  14. return ProducerPriceRangeContainer::class;
  15. }
  16. }