2025-01-09 23:47:18 -08:00
|
|
|
<?php
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace CakeContactUs\Test\Fixture;
|
|
|
|
|
|
|
|
|
|
use Cake\TestSuite\Fixture\TestFixture;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ContactUsFormSubmissionsFixture
|
|
|
|
|
*/
|
2026-01-24 01:20:17 -08:00
|
|
|
class ContactUsFormSubmissionsFixture extends TestFixture {
|
|
|
|
|
|
2026-01-24 11:11:04 -08:00
|
|
|
public string $table = 'contact_us_form_submissions';
|
|
|
|
|
|
2026-01-24 01:20:17 -08:00
|
|
|
/**
|
2025-01-09 23:47:18 -08:00
|
|
|
* Init method
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2026-01-24 01:20:17 -08:00
|
|
|
public function init(): void {
|
2026-01-24 11:11:04 -08:00
|
|
|
$this->records = [];
|
2026-01-24 01:20:17 -08:00
|
|
|
parent::init();
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-09 23:47:18 -08:00
|
|
|
}
|