| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | protected function createAllDirectories() |
||
| 25 | { |
||
| 26 | $this->makeDirectoryStructure( |
||
| 27 | $this->config->getAllDatabaseDirectories() |
||
| 28 | ); |
||
| 29 | |||
| 30 | $this->output->writeInfo('Created migrations directory.'); |
||
| 31 | |||
| 32 | $this->output->writeInfo('Created seeds directory.'); |
||
| 33 | |||
| 34 | $this->output->writeInfo('Created factories directory.'); |
||
| 35 | } |
||
| 36 | |||
| 67 |