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.
|
- <?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();
- }
- }
|