1 | <?php |
||
5 | class SeederGenerator extends Generator |
||
6 | { |
||
7 | /** |
||
8 | * Get stub name. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $stub = 'seed'; |
||
13 | |||
14 | /** |
||
15 | * Get generator path config node. |
||
16 | * |
||
17 | * @return string |
||
18 | */ |
||
19 | public function getPathConfigNode() |
||
22 | |||
23 | /** |
||
24 | * Get destination path for generated file. |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getPath() |
||
32 | |||
33 | /** |
||
34 | * Get base path of destination file. |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getBasePath() |
||
42 | } |
||
43 |