Passed
Push — master ( 80e19c...0a10f9 )
by Mathew
06:07 queued 03:07
created
src/Commands/GenerateInvitations.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
         try
54 54
         {
55
-            $invite = LaravelInvites::for($email)->allow($allow);
55
+            $invite = LaravelInvites::for ($email)->allow($allow);
56 56
 
57 57
             if ($days) {
58 58
                             $invite->setExpiry(now()->addDays($days));
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,9 @@
 block discarded – undo
52 52
 
53 53
         try
54 54
         {
55
-            $invite = LaravelInvites::for($email)->allow($allow);
55
+            $invite = LaravelInvites::for($email) {
56
+                ->allow($allow);
57
+            }
56 58
 
57 59
             if ($days) {
58 60
                             $invite->setExpiry(now()->addDays($days));
Please login to merge, or discard this patch.