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.

18 lines
348B

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