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
741B

  1. <?php
  2. namespace common\logic\User\CreditHistory\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\User\CreditHistory\Repository\CreditHistoryRepository;
  5. use common\logic\User\CreditHistory\Service\CreditHistoryBuilder;
  6. use common\logic\User\CreditHistory\Service\CreditHistoryDefinition;
  7. use common\logic\User\CreditHistory\Service\CreditHistorySolver;
  8. use common\logic\User\CreditHistory\Service\CreditUtils;
  9. /**
  10. * @mixin CreditHistoryDefinition
  11. * @mixin CreditHistorySolver
  12. * @mixin CreditHistoryRepository
  13. * @mixin CreditHistoryBuilder
  14. * @mixin CreditUtils
  15. */
  16. class CreditHistoryManager extends AbstractManager
  17. {
  18. public function getContainerFqcn(): string
  19. {
  20. return CreditHistoryContainer::class;
  21. }
  22. }