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
403B

  1. <?php
  2. namespace common\logic\Order\OrderStatusHistory;
  3. use common\logic\BaseManager;
  4. use common\logic\PointSale\PointSale\OrderStatusHistoryRepository;
  5. /**
  6. * @mixin OrderStatusHistoryRepository
  7. * @mixin OrderStatusHistoryBuilder
  8. */
  9. class OrderStatusHistoryManager extends BaseManager
  10. {
  11. public function __construct()
  12. {
  13. $this->setContainer(new OrderStatusHistoryContainer());
  14. }
  15. }