| Conditions | 3 |
| Paths | 4 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 4 | public function handle() |
|
| 32 | { |
||
| 33 | 4 | $from = $this->hasOption('from') ? $this->option('from') : '.env'; |
|
| 34 | 4 | $to = $this->hasOption('to') ? $this->option('to') : '.env.example'; |
|
| 35 | 4 | export_env($from, $to); |
|
| 36 | 3 | $this->info("Keys successfully exported from [$from] to [$to]"); |
|
| 37 | 3 | } |
|
| 38 | } |
||
| 40 |