Test Setup Failed
Branch master (f6a669)
by Aleksandr
13:54
created
Support/Laravel/migrations/2023_04_18_200228_create_eav_pivot_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(_PIVOT::table(), function (Blueprint $table) {
17
+        Schema::create(_PIVOT::table(), function(Blueprint $table) {
18 18
             $table->integerIncrements(_PIVOT::ID->column());
19 19
             $table->unsignedInteger(_PIVOT::DOMAIN_ID->column())->index();
20 20
             $table->unsignedInteger(_PIVOT::SET_ID->column())->index();
Please login to merge, or discard this patch.
Support/Laravel/migrations/2023_04_18_200057_create_eav_domains_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(_DOMAIN::table(), function (Blueprint $table) {
17
+        Schema::create(_DOMAIN::table(), function(Blueprint $table) {
18 18
             $table->integerIncrements(_DOMAIN::ID->column());
19 19
             $table->string(_DOMAIN::NAME->column(), 191);
20 20
         });
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200424_create_eav_attribute_sets_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(_SET::table(), function (Blueprint $table) {
17
+        Schema::create(_SET::table(), function(Blueprint $table) {
18 18
             $table->integerIncrements(_SET::ID->column());
19 19
             $table->unsignedInteger(_SET::DOMAIN_ID->column());
20 20
             $table->string(_SET::NAME->column());
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200013_create_eav_attributes_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(_ATTR::table(), function (Blueprint $table) {
17
+        Schema::create(_ATTR::table(), function(Blueprint $table) {
18 18
             $table->integerIncrements(_ATTR::ID->column());
19 19
             $table->unsignedInteger(_ATTR::DOMAIN_ID->column())->index();
20 20
             $table->string(_ATTR::NAME->column(), 191);
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200254_create_eav_values_string_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create(ATTR_TYPE::STRING->valueTable(), function (Blueprint $table) {
18
+        Schema::create(ATTR_TYPE::STRING->valueTable(), function(Blueprint $table) {
19 19
             $table->integerIncrements(_VALUE::ID->column());
20 20
             $table->unsignedInteger(_VALUE::DOMAIN_ID->column())->index();
21 21
             $table->unsignedInteger(_VALUE::ENTITY_ID->column())->index();
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200347_create_eav_values_text_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create(ATTR_TYPE::TEXT->valueTable(), function (Blueprint $table) {
18
+        Schema::create(ATTR_TYPE::TEXT->valueTable(), function(Blueprint $table) {
19 19
             $table->integerIncrements(_VALUE::ID->column());
20 20
             $table->unsignedInteger(_VALUE::DOMAIN_ID->column())->index();
21 21
             $table->unsignedInteger(_VALUE::ENTITY_ID->column())->index();
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200305_create_eav_values_integer_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create(ATTR_TYPE::INTEGER->valueTable(), function (Blueprint $table) {
18
+        Schema::create(ATTR_TYPE::INTEGER->valueTable(), function(Blueprint $table) {
19 19
             $table->integerIncrements(_VALUE::ID->column());
20 20
             $table->unsignedInteger(_VALUE::DOMAIN_ID->column())->index();
21 21
             $table->unsignedInteger(_VALUE::ENTITY_ID->column())->index();
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200337_create_eav_values_datetime_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create(ATTR_TYPE::DATETIME->valueTable(), function (Blueprint $table) {
18
+        Schema::create(ATTR_TYPE::DATETIME->valueTable(), function(Blueprint $table) {
19 19
             $table->integerIncrements(_VALUE::ID->column());
20 20
             $table->unsignedInteger(_VALUE::DOMAIN_ID->column())->index();
21 21
             $table->unsignedInteger(_VALUE::ENTITY_ID->column())->index();
Please login to merge, or discard this patch.
Laravel/migrations/2023_04_18_200325_create_eav_values_decimal_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create(ATTR_TYPE::DECIMAL->valueTable(), function (Blueprint $table) {
18
+        Schema::create(ATTR_TYPE::DECIMAL->valueTable(), function(Blueprint $table) {
19 19
             $table->integerIncrements(_VALUE::ID->column());
20 20
             $table->unsignedInteger(_VALUE::DOMAIN_ID->column())->index();
21 21
             $table->unsignedInteger(_VALUE::ENTITY_ID->column())->index();
Please login to merge, or discard this patch.