1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <?php
|
| use $useClassName;
|
| class $className extends $baseClassName
| {
| /**
| * Run Method.
| *
| * Write your database seeder using this method.
| *
| * More information on writing seeders is available here:
| * http://docs.phinx.org/en/latest/seeding.html
| */
| public function run()
| {
|
| }
| }
|
|