Skip to content

Commit 4502c9b

Browse files
committed
Update output
1 parent befdd4f commit 4502c9b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Illuminate/Foundation/Console/EnvironmentDecryptCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ public function handle()
112112
}
113113

114114
$this->components->info('Environment successfully decrypted.');
115-
$this->components->bulletList([
116-
"File: {$filename}",
117-
]);
115+
116+
$this->components->twoColumnDetail('Decrypted file', $filename);
117+
118118
$this->newLine();
119119
}
120120

src/Illuminate/Foundation/Console/EnvironmentEncryptCommand.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ public function handle()
9999
}
100100

101101
$this->components->info('Environment successfully encrypted.');
102-
$this->components->bulletList([
103-
'Key: '.($keyPassed ? $key : 'base64:'.base64_encode($key)),
104-
"Cipher: {$cipher}",
105-
"File: {$encryptedFile}",
106-
]);
102+
103+
$this->components->twoColumnDetail('Key', ($keyPassed ? $key : 'base64:'.base64_encode($key)));
104+
$this->components->twoColumnDetail('Cipher', $cipher);
105+
$this->components->twoColumnDetail('Encrypted file', $encryptedFile);
106+
107107
$this->newLine();
108108
}
109109
}

0 commit comments

Comments
 (0)