Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 lines
493B

  1. <?php
  2. namespace common\logic\Producer\ProducerPriceRange;
  3. use common\logic\ContainerInterface;
  4. class ProducerPriceRangeContainer implements ContainerInterface
  5. {
  6. public function getEntityFqcn(): string
  7. {
  8. return ProducerPriceRange::class;
  9. }
  10. public function getServices(): array
  11. {
  12. return [
  13. ProducerPriceRangeRepository::class
  14. ];
  15. }
  16. public function getRepository()
  17. {
  18. return new ProducerPriceRangeRepository();
  19. }
  20. }