| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 11 |
| Ratio | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | View Code Duplication | protected function createFactoriesFile() |
|
| 41 | { |
||
| 42 | $stub = file_get_contents(__DIR__.'/Stubs/factory.stub'); |
||
| 43 | |||
| 44 | $this->writeFile( |
||
| 45 | $this->config->getFactoryDirectory('ModelFactory.php'), |
||
| 46 | $stub |
||
| 47 | ); |
||
| 48 | |||
| 49 | $this->output->writeInfo('Created ModelFactory file.'); |
||
| 50 | } |
||
| 51 | |||
| 67 |