|
123456789101112131415161718 |
- <?php
-
- namespace common\logic\User\CreditHistory;
-
- use common\logic\AbstractManager;
-
- /**
- * @mixin CreditHistorySolver
- * @mixin CreditHistoryRepository
- * @mixin CreditHistoryBuilder
- */
- class CreditHistoryManager extends AbstractManager
- {
- public function getContainerFqcn(): string
- {
- return CreditHistoryContainer::class;
- }
- }
|