ソースを参照

OrderShopSolver : ajout méthode isEmpty()

packProduct
Guillaume 2年前
コミット
9d9a85681a
1個のファイルの変更5行の追加0行の削除
  1. +5
    -0
      Solver/Order/OrderShopSolver.php

+ 5
- 0
Solver/Order/OrderShopSolver.php ファイルの表示

@@ -42,6 +42,11 @@ class OrderShopSolver
];
}

public function isEmpty(OrderShopInterface $orderShop): bool
{
return $orderShop->getOrderProducts()->isEmpty();
}

public function countQuantities(OrderShopInterface $orderShop): int
{
return $this->countQuantitiesByOrderProducts($orderShop->getOrderProducts());

読み込み中…
キャンセル
保存