Skip to content

Commit

Permalink
http to https for hyperlink
Browse files Browse the repository at this point in the history
  • Loading branch information
vanillajonathan authored and jrfnl committed Aug 6, 2023
1 parent 2a86d18 commit d3ef240
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 @@ -702,7 +702,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 @@ -721,7 +721,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($this->overriddenDefaults['colors']) === true) {
Expand Down

0 comments on commit d3ef240

Please sign in to comment.