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.

23 lines
662B

  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. /**
  9. * @mixin CreditHistoryDefinition
  10. * @mixin CreditHistorySolver
  11. * @mixin CreditHistoryRepository
  12. * @mixin CreditHistoryBuilder
  13. */
  14. class CreditHistoryManager extends AbstractManager
  15. {
  16. public function getContainerFqcn(): string
  17. {
  18. return CreditHistoryContainer::class;
  19. }
  20. }