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.

ProductOrderManager.php 335B

123456789101112131415161718
  1. <?php
  2. namespace common\logic\Order\ProductOrder;
  3. use common\logic\BaseManager;
  4. /**
  5. * @mixin ProductOrderSolver
  6. * @mixin ProductOrderRepository
  7. * @mixin ProductOrderBuilder
  8. */
  9. class ProductOrderManager extends BaseManager
  10. {
  11. public function __construct()
  12. {
  13. $this->setContainer(new ProductOrderContainer());
  14. }
  15. }