選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
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. }