Completed
Push — master ( 663b56...8803ef )
by guillaume
05:37
created
app/Http/Controllers/Auth/RegisterController.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
             return $request->wantsJson()
102 102
                 ? new Response('', 201)
103 103
                 : redirect($this->redirectPath());
104
-        }catch (ValidationException $e) {
104
+        } catch (ValidationException $e) {
105 105
             $attributes = $e->validator->attributes();
106 106
             $attributes['provider'] = $provider;
107 107
             return redirect()->route('register-social-network')
Please login to merge, or discard this patch.
app/Src/UseCases/Infra/Gateway/Real/RealSocialiteGateway.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         if($provider === 'twitter'){
16 16
             $user = Socialite::driver($provider)->user();
17
-        }else {
17
+        } else {
18 18
             $user = Socialite::driver($provider)->stateless()->user();
19 19
         }
20 20
 
Please login to merge, or discard this patch.