21 lines
357 B
Plaintext
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
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|