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