Completed
Push — develop ( 635449...0912d2 )
by Stephen
21s queued 12s
created
src/Client.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                             ->exchangeAuthorizationCodeForToken($code, $realm_id);
124 124
 
125 125
         $this->getDataService()
126
-             ->updateOAuth2Token($oauth_token);
126
+                ->updateOAuth2Token($oauth_token);
127 127
 
128 128
         $this->token->parseOauthToken($oauth_token)
129 129
                     ->save();
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         if (!$this->hasValidAccessToken() || !isset($this->report_service)) {
166 166
             $this->report_service = new ReportService(
167 167
                 $this->getDataService()
168
-                     ->getServiceContext()
168
+                        ->getServiceContext()
169 169
             );
170 170
         }
171 171
 
Please login to merge, or discard this patch.
src/Providers/ClientServiceProvider.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@
 block discarded – undo
42 42
         $this->app->bind(Client::class, function (Application $app) {
43 43
             $token = ($app->auth->user()->quickBooksToken)
44 44
                 ? : $app->auth->user()
45
-                              ->quickBooksToken()
46
-                              ->make();
45
+                                ->quickBooksToken()
46
+                                ->make();
47 47
 
48 48
             return new Client($app->config->get('quickbooks'), $token);
49 49
         });
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
      */
40 40
     public function register()
41 41
     {
42
-        $this->app->bind(Client::class, function (Application $app) {
42
+        $this->app->bind(Client::class, function(Application $app) {
43 43
             $token = ($app->auth->user()->quickBooksToken)
44
-                ? : $app->auth->user()
44
+                ?: $app->auth->user()
45 45
                               ->quickBooksToken()
46 46
                               ->make();
47 47
 
Please login to merge, or discard this patch.