Test Setup Failed
Pull Request — master (#8)
by
unknown
03:53
created
src/CupKitServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.