Procházet zdrojové kódy

OrderShopSolver : ajout méthode isEmpty()

packProduct
Guillaume před 2 roky
rodič
revize
9d9a85681a
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      Solver/Order/OrderShopSolver.php

+ 5
- 0
Solver/Order/OrderShopSolver.php Zobrazit soubor

@@ -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());

Načítá se…
Zrušit
Uložit