Skip to content

Commit 206690d

Browse files
http to https for hyperlink
1 parent add95a7 commit 206690d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ public function processShortArgument($arg, $pos)
690690

691691

692692
/**
693-
* Processes a long (--example) command line argument.
693+
* Processes a long (--example) command-line argument.
694694
*
695695
* @param string $arg The command line argument.
696696
* @param int $pos The position of the argument on the command line.
@@ -709,7 +709,7 @@ public function processLongArgument($arg, $pos)
709709
throw new DeepExitException($output, 0);
710710
case 'version':
711711
$output = 'PHP_CodeSniffer version '.self::VERSION.' ('.self::STABILITY.') ';
712-
$output .= 'by Squiz (http://www.squiz.net)'.PHP_EOL;
712+
$output .= 'by Squiz (https://www.squiz.net)'.PHP_EOL;
713713
throw new DeepExitException($output, 0);
714714
case 'colors':
715715
if (isset(self::$overriddenDefaults['colors']) === true) {

0 commit comments

Comments
 (0)