Passed
Push — dev6 ( e6ba74...31e63d )
by Ron
16:26
created
app/Listeners/NotifyOfNewTechTip.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,7 @@
 block discarded – undo
33 33
     {
34 34
         //
35 35
         $notificationType = UserSettingType::where('name', 'Receive Email Notifications')->first();
36
-        $userList = User::whereHas('UserSetting', function($q) use ($notificationType)
37
-        {
36
+        $userList = User::whereHas('UserSetting', function($q) use ($notificationType) {
38 37
             $q->where('setting_type_id', $notificationType->setting_type_id)->where('value', true);
39 38
         })->get();
40 39
 
Please login to merge, or discard this patch.