From 4a34286c67be671b98eed39b16c9dcd0578262e2 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Sun, 7 Jan 2018 11:16:44 -0600 Subject: [PATCH] remove return type of addUserBid() --- app/Services/FlightService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/FlightService.php b/app/Services/FlightService.php index 5a1f251a..b40d1631 100644 --- a/app/Services/FlightService.php +++ b/app/Services/FlightService.php @@ -34,7 +34,7 @@ class FlightService extends BaseService * @param User $user * @return UserBid|null */ - public function addBid(Flight $flight, User $user): UserBid + public function addBid(Flight $flight, User $user) { # If it's already been bid on, then it can't be bid on again if($flight->has_bid && setting('bids.disable_flight_on_bid')) {