Removed un-needed equality param

This commit is contained in:
James Brooks
2016-05-26 11:28:52 +01:00
parent f84793bfab
commit 48c4240c38

View File

@@ -89,7 +89,7 @@ class SubscribeController extends Controller
throw new NotFoundHttpException();
}
$subscriber = Subscriber::where('verify_code', '=', $code)->first();
$subscriber = Subscriber::where('verify_code', $code)->first();
if (!$subscriber) {
throw new BadRequestHttpException();