Completed
Push — master ( b17895...89e284 )
by Xu
199:43 queued 160:10
created
oauth2/migrations/m180330_062347_create_oauth2_authorization_code_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             'redirect_uri' => $this->text()->notNull()->comment('Redirect Uri'),
31 31
             'expires' => $this->integer()->notNull()->comment('Expires'),
32 32
             'scope' => $this->text()->comment('Scope'),
33
-        ],$tableOptions);
33
+        ], $tableOptions);
34 34
 
35 35
         $this->addPrimaryKey('pk', $this->tableName, 'authorization_code');
36 36
         $this->createIndex('ix_authorization_code_expires', $this->tableName, 'expires');
Please login to merge, or discard this patch.
src/oauth2/migrations/m180330_062249_create_oauth2_refresh_token_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'user_id' => $this->integer()->unsigned()->comment('User Id'),
30 30
             'expires' => $this->integer()->notNull()->comment('Expires'),
31 31
             'scope' => $this->text()->comment('Scope'),
32
-        ],$tableOptions);
32
+        ], $tableOptions);
33 33
 
34 34
         $this->addPrimaryKey('pk', $this->tableName, 'refresh_token');
35 35
         $this->createIndex('ix_refresh_token_expires', $this->tableName, 'expires');
Please login to merge, or discard this patch.