| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function handle() |
||
| 25 | { |
||
| 26 | $this->setUp(); |
||
| 27 | |||
| 28 | $directory = resource_path('lang'.DIRECTORY_SEPARATOR.'bundles'); |
||
| 29 | |||
| 30 | if (!$this->filesystem->exists($directory)) { |
||
| 31 | $this->filesystem->makeDirectory($directory); |
||
| 32 | } |
||
| 33 | |||
| 34 | $this->info('Bundles folder successfully created!'); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |