Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 lines
713B

  1. <?php
  2. namespace common\logic\PointSale\UserPointSale;
  3. use common\logic\ContainerInterface;
  4. use common\logic\PointSale\UserPointSale\UserPointSaleRepository;
  5. class UserPointSaleContainer implements ContainerInterface
  6. {
  7. public function getEntityFqcn(): string
  8. {
  9. return UserPointSale::class;
  10. }
  11. public function getServices(): array
  12. {
  13. return [
  14. UserPointSaleRepository::class,
  15. UserPointSaleBuilder::class,
  16. ];
  17. }
  18. public function getRepository(): UserPointSaleRepository
  19. {
  20. return new UserPointSaleRepository();
  21. }
  22. public function getBuilder(): UserPointSaleBuilder
  23. {
  24. return new UserPointSaleBuilder();
  25. }
  26. }