|
123456789101112131415161718 |
- <?php
-
- namespace common\logic\User\CreditHistory;
-
- use common\logic\BaseManager;
-
- /**
- * @mixin CreditHistorySolver
- * @mixin CreditHistoryRepository
- * @mixin CreditHistoryBuilder
- */
- class CreditHistoryManager extends BaseManager
- {
- public function __construct()
- {
- $this->setContainer(new CreditHistoryContainer());
- }
- }
|