Skip to content
This repository was archived by the owner on Mar 14, 2024. It is now read-only.

Commit c084823

Browse files
committed
process as array
1 parent e242e89 commit c084823

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.1",
20-
"illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0"
20+
"illuminate/encryption": "5.6.*|5.7.*|5.8.*|^6.0|^7.0"
2121
},
2222
"require-dev": {
2323
"phpunit/phpunit": "^7.0|^8.0",

src/EditCredentialsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function handle(Credentials $credentials)
4141

4242
$editor = env('EDITOR', 'vi');
4343

44-
$process = new Process($editor.' '.$meta['uri']);
44+
$process = new Process([$editor, $meta['uri']]);
4545

4646
$process->setTty(true);
4747
$process->mustRun();

0 commit comments

Comments
 (0)