Test Failed
Pull Request — master (#88)
by Artem
04:05
created
2023_11_26_121929_alter_nullable_idp_columns_in_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_identity_providers', function (Blueprint $table) {
16
+        Schema::table('saml2_identity_providers', function(Blueprint $table) {
17 17
             $table->string('idp_entity_id')->nullable()->change();
18 18
             $table->string('idp_login_url')->nullable()->change();
19 19
             $table->string('idp_logout_url')->nullable()->change();
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function down()
31 31
     {
32
-        Schema::table('saml2_identity_providers', function (Blueprint $table) {
32
+        Schema::table('saml2_identity_providers', function(Blueprint $table) {
33 33
             $table->string('idp_entity_id')->nullable(false)->change();
34 34
             $table->string('idp_login_url')->nullable(false)->change();
35 35
             $table->string('idp_logout_url')->nullable(false)->change();
Please login to merge, or discard this patch.