Files
HighSpeaker/vendor/robmorgan/phinx/src/Phinx/Seed/Seed.template.php.dist
T
2024-02-05 00:00:23 +08:00

21 lines
357 B
Plaintext

<?php
$namespaceDefinition
use $useClassName;
class $className extends $baseClassName
{
/**
* Run Method.
*
* Write your database seeder using this method.
*
* More information on writing seeders is available here:
* https://book.cakephp.org/phinx/0/en/seeding.html
*/
public function run(): void
{
}
}