You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
600B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Test\Fixture;
  4. use Cake\TestSuite\Fixture\TestFixture;
  5. /**
  6. * TerritoriesFixture
  7. */
  8. class TerritoriesFixture extends TestFixture
  9. {
  10. /**
  11. * Init method
  12. *
  13. * @return void
  14. */
  15. public function init(): void
  16. {
  17. $this->records = [
  18. [
  19. 'id' => 1,
  20. 'name' => 'Lorem ipsum dolor sit amet',
  21. 'polygon' => '',
  22. 'created' => '2026-07-27 20:48:37',
  23. 'modified' => '2026-07-27 20:48:37',
  24. ],
  25. ];
  26. parent::init();
  27. }
  28. }

Powered by TurnKey Linux.