|
12345678910111213141516171819 |
- <?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;
-
- /**
- * @mixin ProducerPriceRangeRepository
- * @mixin ProducerPriceRangeBuilder
- */
- class ProducerPriceRangeManager extends AbstractManager
- {
- public function getContainerFqcn(): string
- {
- return ProducerPriceRangeContainer::class;
- }
- }
|