1 | <?php |
||
7 | class SeederCreator extends Creator |
||
8 | { |
||
9 | /** |
||
10 | * Create a seeder file with the given name. |
||
11 | * |
||
12 | * @param string $name |
||
13 | * |
||
14 | * @return string |
||
15 | */ |
||
16 | public function create($name) |
||
34 | |||
35 | /** |
||
36 | * Get the stub and insert the given class name. |
||
37 | * |
||
38 | * @param string $name |
||
39 | * |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getStub($name) |
||
48 | } |
||
49 |