From 1f9d48774d17fde15ac2f892938949922443d3bd Mon Sep 17 00:00:00 2001 From: Arman Hosseini <44655055+Arman-Hosseini@users.noreply.github.com> Date: Mon, 29 Jul 2019 21:55:29 +0430 Subject: [PATCH] Improve some URLs --- Command/Command.php | 2 +- Input/ArgvInput.php | 2 +- Logger/ConsoleLogger.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Command/Command.php b/Command/Command.php index 5f30da7a2..3a1ba2e5a 100644 --- a/Command/Command.php +++ b/Command/Command.php @@ -278,7 +278,7 @@ public function setCode(callable $code) $r = new \ReflectionFunction($code); if (null === $r->getClosureThis()) { if (\PHP_VERSION_ID < 70000) { - // Bug in PHP5: https://bugs.php.net/bug.php?id=64761 + // Bug in PHP5: https://bugs.php.net/64761 // This means that we cannot bind static closures and therefore we must // ignore any errors here. There is no way to test if the closure is // bindable. diff --git a/Input/ArgvInput.php b/Input/ArgvInput.php index f604057ec..cc1f6079e 100644 --- a/Input/ArgvInput.php +++ b/Input/ArgvInput.php @@ -148,7 +148,7 @@ private function parseLongOption($token) if (false !== $pos = strpos($name, '=')) { if (0 === \strlen($value = substr($name, $pos + 1))) { // if no value after "=" then substr() returns "" since php7 only, false before - // see http://php.net/manual/fr/migration70.incompatible.php#119151 + // see https://php.net/migration70.incompatible.php#119151 if (\PHP_VERSION_ID < 70000 && false === $value) { $value = ''; } diff --git a/Logger/ConsoleLogger.php b/Logger/ConsoleLogger.php index e531bb1ca..b4821e095 100644 --- a/Logger/ConsoleLogger.php +++ b/Logger/ConsoleLogger.php @@ -22,7 +22,7 @@ * * @author Kévin Dunglas * - * @see http://www.php-fig.org/psr/psr-3/ + * @see https://www.php-fig.org/psr/psr-3/ */ class ConsoleLogger extends AbstractLogger {