Completed
Push — develop ( b20db7...759f4f )
by Jimmy
13s queued 10s
created
src/Laravel/ServiceProvider.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -84,10 +84,10 @@
 block discarded – undo
84 84
                     $app->make(Guzzle::class),
85 85
                     $app->make(ModelResolver::class)
86 86
                 ))->setClientId($app->config->get('services.connectwise.client_id'))
87
-                  ->setIntegrator($app->config->get('services.connectwise.integrator'))
88
-                  ->setPassword($app->config->get('services.connectwise.password'))
89
-                  ->setUrl($app->config->get('services.connectwise.url'))
90
-                  ->setVersion($app->config->get('services.connectwise.version'));
87
+                    ->setIntegrator($app->config->get('services.connectwise.integrator'))
88
+                    ->setPassword($app->config->get('services.connectwise.password'))
89
+                    ->setUrl($app->config->get('services.connectwise.url'))
90
+                    ->setVersion($app->config->get('services.connectwise.version'));
91 91
             }
92 92
         );
93 93
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         $this->app->singleton(
80 80
             Client::class,
81
-            function (Application $app) {
81
+            function(Application $app) {
82 82
                 return (new Client(
83 83
                     $app->make(Token::class),
84 84
                     $app->make(Guzzle::class),
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     {
116 116
         $this->app->singleton(
117 117
             Token::class,
118
-            function (Application $app) {
118
+            function(Application $app) {
119 119
                 return (new Token())->setCompanyId($app->config->get('services.connectwise.company_id'))
120 120
                                     ->setMemberId($this->determineMemberId());
121 121
             }
Please login to merge, or discard this patch.