Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <?php
-
- namespace common\logic\Producer\ProducerPriceRange;
-
- use common\logic\ContainerInterface;
-
- class ProducerPriceRangeContainer implements ContainerInterface
- {
- public function getEntityFqcn(): string
- {
- return ProducerPriceRange::class;
- }
-
- public function getServices(): array
- {
- return [
- ProducerPriceRangeRepository::class
- ];
- }
-
- public function getRepository()
- {
- return new ProducerPriceRangeRepository();
- }
- }
|