You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
615B

  1. <?php
  2. namespace common\logic\Product\ProductPointSale\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Product\ProductPointSale\Repository\ProductPointSaleRepository;
  5. use common\logic\Product\ProductPointSale\Service\ProductPointSaleBuilder;
  6. use common\logic\Product\ProductPointSale\Service\ProductPointSaleDefinition;
  7. /**
  8. * @mixin ProductPointSaleDefinition
  9. * @mixin ProductPointSaleRepository
  10. * @mixin ProductPointSaleBuilder
  11. */
  12. class ProductPointSaleManager extends AbstractManager
  13. {
  14. public function getContainerFqcn(): string
  15. {
  16. return ProductPointSaleContainer::class;
  17. }
  18. }