Skip to content

Commit a813c38

Browse files
authored
Merge pull request #3762 from vanillajonathan/patch-1
http to https for hyperlink
2 parents 7a733cd + 206690d commit a813c38

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
@@ -704,7 +704,7 @@ public function processShortArgument($arg, $pos)
704704

705705

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

0 commit comments

Comments
 (0)