Skip to content

Commit

Permalink
Uses line method instead of newLine to be compatible with Laravel 7
Browse files Browse the repository at this point in the history
  • Loading branch information
little-apps committed Apr 13, 2022
1 parent 7b1e947 commit 6ccb639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/GenerateP12Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function handle(OpenSSLBuilder $builder)

if ($this->option('display')) {
$this->info('Generated environment variables:');
$this->newLine();
$this->line('');

foreach ($vars as $key => $value) {
$this->info($this->createLineForEnvFile($key, $value));
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/GeneratePemCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function handle(OpenSSLBuilder $builder)

if ($this->option('display')) {
$this->info('Generated environment variables:');
$this->newLine();
$this->line('');

foreach ($vars as $key => $value) {
$this->info($this->createLineForEnvFile($key, $value));
Expand Down

0 comments on commit 6ccb639

Please sign in to comment.