From d879358691917beea67f554c2936d8d88ef1f126 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Fri, 16 Mar 2018 12:00:24 +0800 Subject: [PATCH] Make rider available and active by default #56 --- src/Entity/Rider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Entity/Rider.php b/src/Entity/Rider.php index a25f8cd0..d637bc99 100644 --- a/src/Entity/Rider.php +++ b/src/Entity/Rider.php @@ -97,8 +97,8 @@ class Rider $this->job_orders = new ArrayCollection(); $this->schedules = new ArrayCollection(); $this->curr_rating = 0; - $this->flag_available = false; - $this->flag_active = false; + $this->flag_available = true; + $this->flag_active = true; } public function getID()