Completed
Pull Request — master (#44)
by Brian
10:36
created
src/SocialiteWasCalled.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $provider = $this->buildProvider($socialite, $providerName, $providerClass, $oauth1Server);
36 36
         $socialite->extend(
37 37
             $providerName,
38
-            function () use ($provider) {
38
+            function() use ($provider) {
39 39
                 return $provider;
40 40
             }
41 41
         );
Please login to merge, or discard this patch.
src/Helpers/ConfigRetriever.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
             $this->getFromEnv("KEY"),
39 39
             $this->getFromEnv("SECRET"),
40 40
             $this->getFromEnv("REDIRECT_URI"),
41
-            $this->getConfigItems($additionalConfigKeys, function ($key) {
41
+            $this->getConfigItems($additionalConfigKeys, function($key) {
42 42
                 return $this->getFromEnv($key);
43 43
             }));
44 44
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $this->getFromServices('client_id'),
59 59
             $this->getFromServices('client_secret'),
60 60
             $this->getFromServices('redirect'),
61
-            $this->getConfigItems($additionalConfigKeys, function ($key) {
61
+            $this->getConfigItems($additionalConfigKeys, function($key) {
62 62
                 return $this->getFromServices($key);
63 63
             }));
64 64
     }
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         parent::register();
25 25
 
26
-        $this->app->singleton(ConfigRetrieverInterface::class, function () {
26
+        $this->app->singleton(ConfigRetrieverInterface::class, function() {
27 27
             return new ConfigRetriever();
28 28
         });
29 29
     }
Please login to merge, or discard this patch.