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.

12345678910111213141516171819
  1. <?php
  2. namespace common\components;
  3. use common\containers\UserContainer;
  4. use common\containers\ProducerContainer;
  5. class BusinessLogic
  6. {
  7. public function getUserContainer()
  8. {
  9. return new UserContainer();
  10. }
  11. public function getProducerContainer()
  12. {
  13. return new ProducerContainer();
  14. }
  15. }