Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?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();
- }
- }
|