composer update + load more dev dependencies for code quality, checkstyle fix
This commit is contained in:
@@ -8,24 +8,24 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ExternalProductCatalogsFixture
|
||||
*/
|
||||
class ExternalProductCatalogsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ExternalProductCatalogsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||
'base_url' => 'http://localhost:8766',
|
||||
'api_url' => 'http://localhost:8766/api',
|
||||
'created' => '2024-11-22 09:39:37',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||
'base_url' => 'http://localhost:8766',
|
||||
'api_url' => 'http://localhost:8766/api',
|
||||
'created' => '2024-11-22 09:39:37',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,25 +8,25 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ExternalProductCatalogsProductCatalogsFixture
|
||||
*/
|
||||
class ExternalProductCatalogsProductCatalogsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ExternalProductCatalogsProductCatalogsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 1,
|
||||
'external_product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'created' => '2024-11-22 09:39:37',
|
||||
'enabled' => false,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 1,
|
||||
'external_product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'created' => '2024-11-22 09:39:37',
|
||||
'enabled' => false,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,18 +8,16 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductAttributesFixture
|
||||
*/
|
||||
class ProductAttributesFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductAttributesFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
public function init(): void {
|
||||
$this->records = [];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,31 +8,31 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCatalogsFixture
|
||||
*/
|
||||
class ProductCatalogsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCatalogsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'name' => 'Automotive',
|
||||
'catalog_description' => '',
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'f56f3412-ed23-490b-be6e-016208c415d2',
|
||||
'name' => 'Software',
|
||||
'catalog_description' => '',
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'name' => 'Automotive',
|
||||
'catalog_description' => '',
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'f56f3412-ed23-490b-be6e-016208c415d2',
|
||||
'name' => 'Software',
|
||||
'catalog_description' => '',
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,101 +8,101 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCategoriesFixture
|
||||
*/
|
||||
class ProductCategoriesFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCategoriesFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 1,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'name' => 'Engine',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 1,
|
||||
'rght' => 4,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 2,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '3c2377c5-b97c-4bc9-9660-8f77b4893d8b',
|
||||
'name' => 'Engine Internals',
|
||||
'category_description' => '',
|
||||
'parent_id' => 1,
|
||||
'lft' => 2,
|
||||
'rght' => 3,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 3,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'fbee6709-396f-4bb4-b60b-e125b0bc4e83',
|
||||
'name' => 'Electrical',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 5,
|
||||
'rght' => 8,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 4,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'name' => 'Wiring',
|
||||
'category_description' => '',
|
||||
'parent_id' => 3,
|
||||
'lft' => 6,
|
||||
'rght' => 7,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 5,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'c447b6f4-0fb1-4d59-ba45-5613829a725a',
|
||||
'name' => 'Suspension',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 9,
|
||||
'rght' => 12,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 6,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '1e749d3b-aee0-48a5-8d6c-8cf2b83e9b6e',
|
||||
'name' => 'Coilovers',
|
||||
'category_description' => '',
|
||||
'parent_id' => 5,
|
||||
'lft' => 10,
|
||||
'rght' => 11,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 7,
|
||||
'product_catalog_id' => 'f56f3412-ed23-490b-be6e-016208c415d2',
|
||||
'internal_id' => '8c89a3ca-d56f-46bf-a738-7e85b3342b2a',
|
||||
'name' => 'Support',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 1,
|
||||
'rght' => 2,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 1,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'name' => 'Engine',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 1,
|
||||
'rght' => 4,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 2,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '3c2377c5-b97c-4bc9-9660-8f77b4893d8b',
|
||||
'name' => 'Engine Internals',
|
||||
'category_description' => '',
|
||||
'parent_id' => 1,
|
||||
'lft' => 2,
|
||||
'rght' => 3,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 3,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'fbee6709-396f-4bb4-b60b-e125b0bc4e83',
|
||||
'name' => 'Electrical',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 5,
|
||||
'rght' => 8,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 4,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'name' => 'Wiring',
|
||||
'category_description' => '',
|
||||
'parent_id' => 3,
|
||||
'lft' => 6,
|
||||
'rght' => 7,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 5,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => 'c447b6f4-0fb1-4d59-ba45-5613829a725a',
|
||||
'name' => 'Suspension',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 9,
|
||||
'rght' => 12,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 6,
|
||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||
'internal_id' => '1e749d3b-aee0-48a5-8d6c-8cf2b83e9b6e',
|
||||
'name' => 'Coilovers',
|
||||
'category_description' => '',
|
||||
'parent_id' => 5,
|
||||
'lft' => 10,
|
||||
'rght' => 11,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 7,
|
||||
'product_catalog_id' => 'f56f3412-ed23-490b-be6e-016208c415d2',
|
||||
'internal_id' => '8c89a3ca-d56f-46bf-a738-7e85b3342b2a',
|
||||
'name' => 'Support',
|
||||
'category_description' => '',
|
||||
'parent_id' => null,
|
||||
'lft' => 1,
|
||||
'rght' => 2,
|
||||
'enabled' => true,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,41 +8,41 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCategoryAttributeOptionsFixture
|
||||
*/
|
||||
class ProductCategoryAttributeOptionsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCategoryAttributeOptionsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a8',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Red',
|
||||
'attribute_label' => 'Red',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a1',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Blue',
|
||||
'attribute_label' => 'Blue',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a2',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Green',
|
||||
'attribute_label' => 'Green',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
]
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a8',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Red',
|
||||
'attribute_label' => 'Red',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a1',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Blue',
|
||||
'attribute_label' => 'Blue',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'e06f1723-2456-483a-b3c4-004603e032a2',
|
||||
'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'attribute_value' => 'Green',
|
||||
'attribute_label' => 'Green',
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,25 +8,25 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCategoryAttributesFixture
|
||||
*/
|
||||
class ProductCategoryAttributesFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCategoryAttributesFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'name' => 'Color',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'attribute_type_id' => 1,
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c',
|
||||
'name' => 'Color',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'attribute_type_id' => 1,
|
||||
'enabled' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,92 +8,91 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCategoryVariantsFixture
|
||||
*/
|
||||
class ProductCategoryVariantOptionsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCategoryVariantOptionsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d23',
|
||||
'variant_value' => 'Blue',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d24',
|
||||
'variant_value' => 'Red',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d23',
|
||||
'variant_value' => 'Blue',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d24',
|
||||
'variant_value' => 'Red',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d21',
|
||||
'variant_value' => '12AWG',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d22',
|
||||
'variant_value' => '14AWG',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d21',
|
||||
'variant_value' => '12AWG',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d22',
|
||||
'variant_value' => '14AWG',
|
||||
'variant_label' => null,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'variant_value' => 'Months',
|
||||
'variant_label' => 'Months',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78112',
|
||||
'variant_value' => 'Years',
|
||||
'variant_label' => 'Years',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f22221',
|
||||
'variant_value' => '6',
|
||||
'variant_label' => '6',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f22222',
|
||||
'variant_value' => 12,
|
||||
'variant_label' => 12,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'variant_value' => 'Months',
|
||||
'variant_label' => 'Months',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78112',
|
||||
'variant_value' => 'Years',
|
||||
'variant_label' => 'Years',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f22221',
|
||||
'variant_value' => '6',
|
||||
'variant_label' => '6',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f22222',
|
||||
'variant_value' => 12,
|
||||
'variant_label' => 12,
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'created' => '2025-07-04 12:00:00',
|
||||
'modified' => '2025-07-04 12:00:00',
|
||||
'enabled' => 1,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,46 +8,46 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductCategoryVariantsFixture
|
||||
*/
|
||||
class ProductCategoryVariantsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductCategoryVariantsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'name' => 'Subscription Length Units',
|
||||
'product_category_id' => null,
|
||||
'enabled' => true,
|
||||
'is_system_variant' => true,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'name' => 'Subscription Length',
|
||||
'product_category_id' => null,
|
||||
'enabled' => true,
|
||||
'is_system_variant' => true,
|
||||
],
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78111',
|
||||
'name' => 'Subscription Length Units',
|
||||
'product_category_id' => null,
|
||||
'enabled' => true,
|
||||
'is_system_variant' => true,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78222',
|
||||
'name' => 'Subscription Length',
|
||||
'product_category_id' => null,
|
||||
'enabled' => true,
|
||||
'is_system_variant' => true,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'name' => 'Color',
|
||||
'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'enabled' => true,
|
||||
'is_system_variant' => false,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'name' => 'AWG',
|
||||
'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'enabled' => true,
|
||||
'is_system_variant' => false,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'name' => 'Color',
|
||||
'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'enabled' => true,
|
||||
'is_system_variant' => false,
|
||||
],
|
||||
[
|
||||
'id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'name' => 'AWG',
|
||||
'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e',
|
||||
'enabled' => true,
|
||||
'is_system_variant' => false,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,116 +8,116 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductPhotosFixture
|
||||
*/
|
||||
class ProductPhotosFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductPhotosFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f58',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 1,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f58',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 1,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f51',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'categories',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 1,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f51',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'categories',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 1,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f50',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f53',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'categories',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f50',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f53',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => null,
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'categories',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f11',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 1,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f12',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f11',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f58.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 1,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => '2c386086-f4c5-4093-bea5-ee9c29479f12',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'photo_dir' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'photo_filename' => '2c386086-f4c5-4093-bea5-ee9c29479f51.png',
|
||||
'primary_photo' => 0,
|
||||
'primary_category_photo' => 0,
|
||||
'primary_sku_photo' => 0,
|
||||
'photo_position' => 100,
|
||||
'enabled' => 1,
|
||||
'created' => '2025-08-10 04:32:10',
|
||||
'modified' => '2025-08-10 04:32:10',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,30 +8,30 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductSkuVariantValuesFixture
|
||||
*/
|
||||
class ProductSkuVariantValuesFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductSkuVariantValuesFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Table name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public string $table = 'product_sku_variant_values';
|
||||
public string $table = 'product_sku_variant_values';
|
||||
|
||||
/**
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '98b609d8-1d4f-484c-a13a-6adb7102da56',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_variant_id' => '2e6e4031-c430-4d07-b8d6-a4e759b72569',
|
||||
'product_category_variant_option_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d23',
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '98b609d8-1d4f-484c-a13a-6adb7102da56',
|
||||
'product_sku_id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_variant_id' => '2e6e4031-c430-4d07-b8d6-a4e759b72569',
|
||||
'product_category_variant_option_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d23',
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,34 +8,35 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductSkusFixture
|
||||
*/
|
||||
class ProductSkusFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductSkusFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Table name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public string $table = 'product_skus';
|
||||
/**
|
||||
public string $table = 'product_skus';
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'sku' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'barcode' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'price' => 1.5,
|
||||
'cost' => 1.5,
|
||||
'created' => '2025-04-15 09:09:15',
|
||||
'modified' => '2025-04-15 09:09:15',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'sku' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'barcode' => '3a477e3e-7977-4813-81f6-f85949613979',
|
||||
'price' => 1.5,
|
||||
'cost' => 1.5,
|
||||
'created' => '2025-04-15 09:09:15',
|
||||
'modified' => '2025-04-15 09:09:15',
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,45 +8,45 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductVariantsFixture
|
||||
*/
|
||||
class ProductVariantsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductVariantsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72568',
|
||||
'name' => 'Color',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72569',
|
||||
'name' => 'Color',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72561',
|
||||
'name' => 'AWG',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72562',
|
||||
'name' => 'AWG',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'enabled' => 1,
|
||||
]
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72568',
|
||||
'name' => 'Color',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72569',
|
||||
'name' => 'Color',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72561',
|
||||
'name' => 'AWG',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'enabled' => 1,
|
||||
],
|
||||
[
|
||||
'id' => '2e6e4031-c430-4d07-b8d6-a4e759b72562',
|
||||
'name' => 'AWG',
|
||||
'product_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d94',
|
||||
'product_id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'enabled' => 1,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -8,31 +8,31 @@ use Cake\TestSuite\Fixture\TestFixture;
|
||||
/**
|
||||
* ProductsFixture
|
||||
*/
|
||||
class ProductsFixture extends TestFixture
|
||||
{
|
||||
/**
|
||||
class ProductsFixture extends TestFixture {
|
||||
|
||||
/**
|
||||
* Init method
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function init(): void
|
||||
{
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'name' => '12AWG RED TXL Wire',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'product_type_id' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'name' => 'Heat Shrink',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'product_type_id' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
public function init(): void {
|
||||
$this->records = [
|
||||
[
|
||||
'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317',
|
||||
'name' => '12AWG RED TXL Wire',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'product_type_id' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
[
|
||||
'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05318',
|
||||
'name' => 'Heat Shrink',
|
||||
'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23',
|
||||
'product_type_id' => 1,
|
||||
'deleted' => null,
|
||||
],
|
||||
];
|
||||
parent::init();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user