Completed
Push — develop ( 1769ee...40d91b )
by Jimmy
16s
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
                           ->as('quickbooks.')
87 87
                           ->middleware($config['middleware']['default'])
88 88
                           ->namespace('Spinen\QuickBooks\Http\Controllers')
89
-                          ->group(function (Router $router) use ($config) {
89
+                          ->group(function(Router $router) use ($config) {
90 90
                               $router->get($config['paths']['connect'], 'Controller@connect')
91 91
                                      ->middleware($config['middleware']['authenticated'])
92 92
                                      ->name('connect');
Please login to merge, or discard this patch.
src/Providers/ClientServiceProvider.php 1 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.
database/migrations/2018_03_11_141103_create_quick_books_tokens_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function up()
16 16
     {
17
-        Schema::create('quickbooks_tokens', function (Blueprint $table) {
17
+        Schema::create('quickbooks_tokens', function(Blueprint $table) {
18 18
             $user_id_type = DB::getSchemaBuilder()
19 19
                               ->getColumnType('users', 'id') === 'bigint' ? 'unsignedBigInteger' : 'unsignedInteger';
20 20
 
Please login to merge, or discard this patch.