diff --git a/src/Console/KeysCommand.php b/src/Console/KeysCommand.php index 261b114e5..95144c0b3 100644 --- a/src/Console/KeysCommand.php +++ b/src/Console/KeysCommand.php @@ -35,7 +35,7 @@ public function handle(RSA $rsa) { $keys = $rsa->createKey($this->input ? (int) $this->option('length') : 4096); - list($publicKey, $privateKey) = [ + [$publicKey, $privateKey] = [ Passport::keyPath('oauth-public.key'), Passport::keyPath('oauth-private.key'), ];