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.

20 satır
365B

  1. <?php
  2. namespace common\containers;
  3. use common\repositories\UserRepository;
  4. use common\services\CreditHistoryService;
  5. use common\services\UserService;
  6. class CreditHistoryContainer
  7. {
  8. public function getService()
  9. {
  10. return new CreditHistoryService();
  11. }
  12. public function getRepository()
  13. {
  14. return new CreditHistoryService();
  15. }
  16. }