Passed
Push — master ( 2ce163...42be68 )
by Artem
04:57
created
2020_10_22_140856_add_relay_state_url_column_to_saml2_tenants_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('saml2_tenants', function (Blueprint $table) {
16
+        Schema::table('saml2_tenants', function(Blueprint $table) {
17 17
             $table->string('relay_state_url')->nullable();
18 18
         });
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table('saml2_tenants', function (Blueprint $table) {
28
+        Schema::table('saml2_tenants', function(Blueprint $table) {
29 29
             $table->dropColumn('relay_state_url');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.