From 206690ddf62d9fb65a6e0a9cdc7ea896c1553afe Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 17 Feb 2023 00:44:29 +0100 Subject: [PATCH] http to https for hyperlink --- src/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.php b/src/Config.php index bfca9e1d18..4859756b69 100644 --- a/src/Config.php +++ b/src/Config.php @@ -690,7 +690,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. @@ -709,7 +709,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) {