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.
|
- <?php
-
- namespace common\logic\Producer\ProducerPriceRange\Wrapper;
-
- use common\logic\AbstractManager;
- use common\logic\Producer\ProducerPriceRange\Repository\ProducerPriceRangeRepository;
- use common\logic\Producer\ProducerPriceRange\Service\ProducerPriceRangeBuilder;
- use common\logic\Producer\ProducerPriceRange\Service\ProducerPriceRangeDefinition;
-
- /**
- * @mixin ProducerPriceRangeDefinition
- * @mixin ProducerPriceRangeRepository
- * @mixin ProducerPriceRangeBuilder
- */
- class ProducerPriceRangeManager extends AbstractManager
- {
- public function getContainerFqcn(): string
- {
- return ProducerPriceRangeContainer::class;
- }
- }
|