Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 lines
322B

  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. }