From c2442e8ce0885f1e9f221178975e5a00e30dbb63 Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Wed, 14 Feb 2018 01:31:04 -0200 Subject: [PATCH] Use HTTPS instead of HTTP --- .github/CODE_OF_CONDUCT.md | 6 +++--- .github/CONTRIBUTING.md | 2 +- ChangeLog-7.0.md | 2 +- src/Framework/Constraint/IsEqual.php | 2 +- src/Framework/Constraint/IsIdentical.php | 2 +- src/Framework/ExceptionWrapper.php | 2 +- src/Util/Blacklist.php | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index d39d536c691..ee242a803a0 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -22,7 +22,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project maintainer at sebastian@phpunit.de. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident. -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.3.0, available at [http://contributor-covenant.org/version/1/3/0/][version] +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.3.0, available at [https://contributor-covenant.org/version/1/3/0/][version] -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/3/0/ +[homepage]: https://contributor-covenant.org +[version]: https://contributor-covenant.org/version/1/3/0/ diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index d6cb1e943a5..486351de473 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -11,7 +11,7 @@ Please note that this project is released with a [Contributor Code of Conduct](C * Add tests for it. This is important so we don't break it in a future version unintentionally. * Send a pull request. Bonus points for topic branches. -Please make sure that you have [set up your user name and email address](http://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup) for use with Git. Strings such as `silly nick name ` look really stupid in the commit history of a project. +Please make sure that you have [set up your user name and email address](https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup) for use with Git. Strings such as `silly nick name ` look really stupid in the commit history of a project. Pull requests for bug fixes must be based on the current stable branch whereas pull requests for new features must be based on the `master` branch. diff --git a/ChangeLog-7.0.md b/ChangeLog-7.0.md index c71fd9e6881..49bd79df5df 100644 --- a/ChangeLog-7.0.md +++ b/ChangeLog-7.0.md @@ -1,6 +1,6 @@ # Changes in PHPUnit 7.0 -All notable changes of the PHPUnit 7.0 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +All notable changes of the PHPUnit 7.0 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. ## [7.0.1] - 2018-02-13 diff --git a/src/Framework/Constraint/IsEqual.php b/src/Framework/Constraint/IsEqual.php index 78a25949abe..edde911f917 100644 --- a/src/Framework/Constraint/IsEqual.php +++ b/src/Framework/Constraint/IsEqual.php @@ -16,7 +16,7 @@ * Constraint that checks if one value is equal to another. * * Equality is checked with PHP's == operator, the operator is explained in - * detail at {@url http://www.php.net/manual/en/types.comparisons.php}. + * detail at {@url https://php.net/manual/en/types.comparisons.php}. * Two values are equal if they have the same value disregarding type. * * The expected value is passed in the constructor. diff --git a/src/Framework/Constraint/IsIdentical.php b/src/Framework/Constraint/IsIdentical.php index 4f7f116dba4..8e733aa7cec 100644 --- a/src/Framework/Constraint/IsIdentical.php +++ b/src/Framework/Constraint/IsIdentical.php @@ -17,7 +17,7 @@ * * Identical check is performed with PHP's === operator, the operator is * explained in detail at - * {@url http://www.php.net/manual/en/types.comparisons.php}. + * {@url https://php.net/manual/en/types.comparisons.php}. * Two values are identical if they have the same value and are of the same * type. * diff --git a/src/Framework/ExceptionWrapper.php b/src/Framework/ExceptionWrapper.php index 01e60c78b4e..fc6654a24dd 100644 --- a/src/Framework/ExceptionWrapper.php +++ b/src/Framework/ExceptionWrapper.php @@ -39,7 +39,7 @@ class ExceptionWrapper extends Exception public function __construct(Throwable $t) { // PDOException::getCode() is a string. - // @see http://php.net/manual/en/class.pdoexception.php#95812 + // @see https://php.net/manual/en/class.pdoexception.php#95812 parent::__construct($t->getMessage(), (int) $t->getCode()); $this->className = \get_class($t); diff --git a/src/Util/Blacklist.php b/src/Util/Blacklist.php index da3333c6e77..4eabbc75440 100644 --- a/src/Util/Blacklist.php +++ b/src/Util/Blacklist.php @@ -120,7 +120,7 @@ private function initialize(): void // Hide process isolation workaround on Windows. if (DIRECTORY_SEPARATOR === '\\') { // tempnam() prefix is limited to first 3 chars. - // @see http://php.net/manual/en/function.tempnam.php + // @see https://php.net/manual/en/function.tempnam.php self::$directories[] = \sys_get_temp_dir() . '\\PHP'; } }