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

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Order;
  3. use Lc\CaracoleBundle\Model\Order\OrderShopModel;
  4. class OrderDeliveryTypeSolver
  5. {
  6. public static function getDeliveryTypeChoices()
  7. {
  8. return [
  9. OrderShopModel::DELIVERY_TYPE_HOME,
  10. OrderShopModel::DELIVERY_TYPE_POINTSALE,
  11. ];
  12. }
  13. }