You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
521B

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