@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | protected function registerSingletons(): void |
45 | 45 | { |
46 | - $this->app->singleton(self::SINGLETON_CLIENT_CREDENTIALS, function () { |
|
46 | + $this->app->singleton(self::SINGLETON_CLIENT_CREDENTIALS, function() { |
|
47 | 47 | $class = config('corundum.client_credentials'); |
48 | 48 | return new $class( |
49 | 49 | \config('corundum.base_url', ''), |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | ); |
53 | 53 | }); |
54 | 54 | |
55 | - $this->app->singleton(self::SINGLETON_IDENTITY, function () { |
|
55 | + $this->app->singleton(self::SINGLETON_IDENTITY, function() { |
|
56 | 56 | $class = config('corundum.identity'); |
57 | 57 | return new $class( |
58 | 58 | app(self::SINGLETON_CLIENT_CREDENTIALS), |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | ); |
62 | 62 | }); |
63 | 63 | |
64 | - $this->app->singleton(self::SINGLETON_CLIENT, function () { |
|
64 | + $this->app->singleton(self::SINGLETON_CLIENT, function() { |
|
65 | 65 | $class = config('corundum.client'); |
66 | 66 | return new $class(app(self::SINGLETON_IDENTITY)); |
67 | 67 | }); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | protected function registerStorage(): void |
74 | 74 | { |
75 | - Storage::extend('corundum', function ($app, $config) { |
|
75 | + Storage::extend('corundum', function($app, $config) { |
|
76 | 76 | return new Filesystem(new CupAdapter($app, $config)); |
77 | 77 | }); |
78 | 78 | } |