| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function install(InstallCommand $command, ComposerContract $composer): bool |
||
| 20 | { |
||
| 21 | $command->info('Pulling illuminate/filesystem...'); |
||
| 22 | $composer->require('illuminate/filesystem "5.5.*"'); |
||
| 23 | |||
| 24 | $command->info('Component installed! Usage:'); |
||
| 25 | $command->comment(' |
||
| 26 | |||
| 27 | use Illuminate\Support\Facades\File; |
||
| 28 | |||
| 29 | File::put("file.txt", "Thank you for considering Laravel Zero."); |
||
| 30 | |||
| 31 | '); |
||
| 32 | |||
| 33 | return true; |
||
| 34 | } |
||
| 35 | } |
||
| 36 |