Skip to content

Commit

Permalink
Combine isset() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jul 25, 2021
1 parent 525e861 commit 43596ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/phar-version.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php declare(strict_types=1);

if (!isset($argv[1]) || !isset($argv[2])) {
if (!isset($argv[1], $argv[2])) {
exit(1);
}

Expand Down

0 comments on commit 43596ae

Please sign in to comment.