Completed
Pull Request — develop (#13)
by Stephen
04:18
created
src/Http/Controllers/Controller.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         if ($quickbooks->hasValidRefreshToken()) {
37 37
             return $view_factory->make('quickbooks::disconnect')
38 38
                                 ->with('company', $quickbooks->getDataService()
39
-                                                             ->getCompanyInfo());
39
+                                                                ->getCompanyInfo());
40 40
         }
41 41
 
42 42
         // Give view to link account
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         // TODO: Figure out where to put this in session & remove Facade
61 61
         Alert::success('Disconnected from QuickBooks')
62
-             ->flash();
62
+                ->flash();
63 63
 
64 64
         return $redirector->back();
65 65
     }
@@ -85,6 +85,6 @@  discard block
 block discarded – undo
85 85
         $quickbooks->exchangeCodeForToken($request->get('code'), $request->get('realmId'));
86 86
 
87 87
         return $redirector->intended($url_generator->route('quickbooks.connect'))
88
-                          ->with('success', 'Connected to QuickBooks');
88
+                            ->with('success', 'Connected to QuickBooks');
89 89
     }
90 90
 }
Please login to merge, or discard this patch.