Removed un-needed equality param
This commit is contained in:
@@ -89,7 +89,7 @@ class SubscribeController extends Controller
|
|||||||
throw new NotFoundHttpException();
|
throw new NotFoundHttpException();
|
||||||
}
|
}
|
||||||
|
|
||||||
$subscriber = Subscriber::where('verify_code', '=', $code)->first();
|
$subscriber = Subscriber::where('verify_code', $code)->first();
|
||||||
|
|
||||||
if (!$subscriber) {
|
if (!$subscriber) {
|
||||||
throw new BadRequestHttpException();
|
throw new BadRequestHttpException();
|
||||||
|
|||||||
Reference in New Issue
Block a user