Passed
Push — master ( 09f0b1...3d0663 )
by Ajit
03:26
created
app/Subscription.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function scopeDashboardExpiring($query)
41 41
     {
42 42
         return $query
43
-            ->with(['member' => function ($query) {
43
+            ->with(['member' => function($query) {
44 44
                 $query->where('status', '=', \constStatus::Active);
45 45
             }])
46 46
             ->where('end_date', '<', Carbon::today()->addDays(7))
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function scopeDashboardExpired($query)
51 51
     {
52 52
         return $query
53
-            ->with(['member' => function ($query) {
53
+            ->with(['member' => function($query) {
54 54
                 $query->where('status', '=', \constStatus::Active);
55 55
             }])
56 56
             ->where('status', '=', \constSubscription::Expired);
Please login to merge, or discard this patch.