Passed
Pull Request — master (#41)
by Mike
02:12
created
src/Http/Requests/RecordStripeEvent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     {
23 23
         $data = $this->json()->all();
24 24
 
25
-        if (! $data || ! array_key_exists('data', $data)) {
25
+        if ( ! $data || ! array_key_exists('data', $data)) {
26 26
             return;
27 27
         }
28 28
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $authModel = config('auth.providers.users.model') ?? config('auth.model');
35 35
         $user = app($authModel)->where('stripe_id', $stripeCustomerId)->first();
36 36
 
37
-        if (! $user) {
37
+        if ( ! $user) {
38 38
             return;
39 39
         }
40 40
 
Please login to merge, or discard this patch.