Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function generate() |
||
9 | { |
||
10 | $controllerTemplate = $this->buildTemplate('Controller', [ |
||
11 | '{{modelName}}' => $this->module->getModelName(), |
||
12 | '{{moduleName}}' => $this->module->getModuleName(), |
||
13 | '{{modelNameSingularLowerCase}}' => strtolower($this->module->getModelName()) |
||
14 | ]); |
||
15 | |||
16 | file_put_contents(base_path("app/Http/Controllers/" . $this->module->getModelName() . "Controller" . ".php"), $controllerTemplate); |
||
17 | } |
||
19 |