39 lines
		
	
	
		
			861 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			861 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace CakeProducts\Test\Fixture;
 | 
						|
 | 
						|
use Cake\TestSuite\Fixture\TestFixture;
 | 
						|
 | 
						|
/**
 | 
						|
 * ProductCatalogsFixture
 | 
						|
 */
 | 
						|
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();
 | 
						|
    }
 | 
						|
}
 |