@@ -109,7 +109,7 @@ |
||
109 | 109 | { |
110 | 110 | $scopesRaw = Arr::get($body, 'scope', null); |
111 | 111 | |
112 | - if (! is_array($scopesRaw) && ! is_string($scopesRaw)) { |
|
112 | + if (!is_array($scopesRaw) && !is_string($scopesRaw)) { |
|
113 | 113 | return []; |
114 | 114 | } |
115 | 115 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | { |
16 | 16 | if ($this->app instanceof \Illuminate\Foundation\Application) { |
17 | 17 | // Laravel |
18 | - $this->app->booted(function () { |
|
18 | + $this->app->booted(function() { |
|
19 | 19 | $socialiteWasCalled = app(SocialiteWasCalled::class); |
20 | 20 | |
21 | 21 | event($socialiteWasCalled); |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | { |
36 | 36 | parent::register(); |
37 | 37 | |
38 | - if (class_exists('Laravel\Lumen\Application') && ! defined('SOCIALITEPROVIDERS_STATELESS')) { |
|
38 | + if (class_exists('Laravel\Lumen\Application') && !defined('SOCIALITEPROVIDERS_STATELESS')) { |
|
39 | 39 | define('SOCIALITEPROVIDERS_STATELESS', true); |
40 | 40 | } |
41 | 41 | |
42 | - if (! $this->app->bound(ConfigRetrieverInterface::class)) { |
|
42 | + if (!$this->app->bound(ConfigRetrieverInterface::class)) { |
|
43 | 43 | $this->app->singleton(ConfigRetrieverInterface::class, fn () => new ConfigRetriever); |
44 | 44 | } |
45 | 45 | } |