Skip to content

Commit

Permalink
Merge pull request #3762 from vanillajonathan/patch-1
Browse files Browse the repository at this point in the history
http to https for hyperlink
  • Loading branch information
jrfnl authored Aug 6, 2023
2 parents 7a733cd + 206690d commit a813c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ public function processShortArgument($arg, $pos)


/**
* Processes a long (--example) command line argument.
* Processes a long (--example) command-line argument.
*
* @param string $arg The command line argument.
* @param int $pos The position of the argument on the command line.
Expand All @@ -723,7 +723,7 @@ public function processLongArgument($arg, $pos)
throw new DeepExitException($output, 0);
case 'version':
$output = 'PHP_CodeSniffer version '.self::VERSION.' ('.self::STABILITY.') ';
$output .= 'by Squiz (http://www.squiz.net)'.PHP_EOL;
$output .= 'by Squiz (https://www.squiz.net)'.PHP_EOL;
throw new DeepExitException($output, 0);
case 'colors':
if (isset(self::$overriddenDefaults['colors']) === true) {
Expand Down

0 comments on commit a813c38

Please sign in to comment.