38 lines
		
	
	
		
			855 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			855 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace CakeProducts\Test\Fixture;
 | 
						|
 | 
						|
use Cake\TestSuite\Fixture\TestFixture;
 | 
						|
 | 
						|
/**
 | 
						|
 * ProductSkuVariantValuesFixture
 | 
						|
 */
 | 
						|
class ProductSkuVariantValuesFixture extends TestFixture
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Table name
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    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_category_variant_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d93',
 | 
						|
                'product_category_variant_option_id' => '5a386e9f-6e7a-4ae7-9360-c8e529f78d23',
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
        parent::init();
 | 
						|
    }
 | 
						|
}
 |