Skip to content

Commit

Permalink
Silence undefined index warning when openssl not available.
Browse files Browse the repository at this point in the history
  • Loading branch information
sgolemon committed Oct 15, 2019
1 parent 8e06504 commit 15d7cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/phar/phar/pharcommand.inc
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ class PharCommand extends CLICommand
$hashbang = $this->args['b']['val'];
$archive = $this->args['f']['val'];
$hash = $this->args['h']['val'];
$privkey = $this->args['y']['val'];
$privkey = $this->args['y']['val'] ?? null;
$regex = $this->args['i']['val'];
$level = $this->args['l']['val'];
$loader = $this->args['p']['val'];
Expand Down

0 comments on commit 15d7cd9

Please sign in to comment.