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.
|
- <?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;
- }
- }
|