No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

ProducerPriceRangeManager.php 643B

123456789101112131415161718192021
  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. use common\logic\Producer\ProducerPriceRange\Service\ProducerPriceRangeDefinition;
  7. /**
  8. * @mixin ProducerPriceRangeDefinition
  9. * @mixin ProducerPriceRangeRepository
  10. * @mixin ProducerPriceRangeBuilder
  11. */
  12. class ProducerPriceRangeManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return ProducerPriceRangeContainer::class;
  17. }
  18. }