From 0220c07ded551de7fea66fd84dc6b406c3d83aed Mon Sep 17 00:00:00 2001 From: Atala Date: Mon, 16 Apr 2018 16:37:59 +0200 Subject: [PATCH] fix: correct pricing rule on demo --- src/AppBundle/Command/InitDemoCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppBundle/Command/InitDemoCommand.php b/src/AppBundle/Command/InitDemoCommand.php index 4d233fa2a5..a929e4c8df 100644 --- a/src/AppBundle/Command/InitDemoCommand.php +++ b/src/AppBundle/Command/InitDemoCommand.php @@ -275,7 +275,7 @@ private function createPricingRuleSet(Entity\Store $store) } for ($i = 1; $i <= 5; $i++) { - array_push($prices, random_int(5, 20)); + array_push($prices, random_int(500, 2000)); } sort($distances);