Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function create() |
||
13 | { |
||
14 | $createdDirs = (bool) count($this->makeDirectoryStructure( |
||
15 | $this->config->getAllDatabaseDirectories(), |
||
16 | $this->output |
||
17 | )); |
||
18 | |||
19 | $createdFactories = $this->createFactoriesFile(); |
||
20 | |||
21 | $createdSeeder = $this->createSeederFile(); |
||
22 | |||
23 | $this->outputNothingCreated( |
||
24 | [$createdDirs, $createdFactories, $createdSeeder] |
||
25 | ); |
||
26 | } |
||
27 | |||
74 |