Skip to content

Commit 343645c

Browse files
authored
Update all links to use https (#2120)
1 parent eccde74 commit 343645c

16 files changed

+36
-36
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; This file is for unifying the coding style for different editors and IDEs.
2-
; More information at http://editorconfig.org
2+
; More information at https://editorconfig.org
33

44
root = true
55

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* text text=auto eol=lf
33

44
# These files are always considered text and should use LF.
5-
# See core.whitespace @ http://git-scm.com/docs/git-config for whitespace flags.
5+
# See core.whitespace @ https://git-scm.com/docs/git-config for whitespace flags.
66
*.php text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
77
*.json text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
88
*.test text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ install [docker-compose](https://docs.docker.com/compose/) for your platform.
9191
9292
## Documentation
9393
94-
The Phinx documentation is stored in the **docs** directory using the [RestructedText](http://docutils.sourceforge.net/rst.html)
94+
The Phinx documentation is stored in the **docs** directory using the [RestructedText](https://docutils.sourceforge.io/rst.html)
9595
format. All documentation merged to `master` is automatically published to the Phinx documentation site available at http://docs.phinx.org.

docs/en/configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ Supported Adapters
335335

336336
Phinx currently supports the following database adapters natively:
337337

338-
* `MySQL <http://www.mysql.com/>`_: specify the ``mysql`` adapter.
339-
* `PostgreSQL <http://www.postgresql.org/>`_: specify the ``pgsql`` adapter.
340-
* `SQLite <http://www.sqlite.org/>`_: specify the ``sqlite`` adapter.
341-
* `SQL Server <http://www.microsoft.com/sqlserver>`_: specify the ``sqlsrv`` adapter.
338+
* `MySQL <https://www.mysql.com/>`_: specify the ``mysql`` adapter.
339+
* `PostgreSQL <https://www.postgresql.org/>`_: specify the ``pgsql`` adapter.
340+
* `SQLite <https://www.sqlite.org/>`_: specify the ``sqlite`` adapter.
341+
* `SQL Server <https://www.microsoft.com/sqlserver>`_: specify the ``sqlsrv`` adapter.
342342

343343
For each adapter, you may configure the behavior of the underlying PDO object by setting in your
344344
config object the lowercase version of the constant name. This works for both PDO options

docs/en/migrations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Executing Queries
172172
Queries can be executed with the ``execute()`` and ``query()`` methods. The
173173
``execute()`` method returns the number of affected rows whereas the
174174
``query()`` method returns the result as a
175-
`PDOStatement <http://php.net/manual/en/class.pdostatement.php>`_. Both methods
175+
`PDOStatement <https://php.net/manual/en/class.pdostatement.php>`_. Both methods
176176
accept an optional second parameter ``$params`` which is an array of elements,
177177
and if used will cause the underlying connection to use a prepared statement.
178178

@@ -237,7 +237,7 @@ and if used will cause the underlying connection to use a prepared statement.
237237
If Phinx was to iterate any potential result sets, looking to see if one
238238
had an error, then Phinx would be denying access to all the results as there
239239
is no facility in PDO to get a previous result set
240-
`nextRowset() <http://php.net/manual/en/pdostatement.nextrowset.php>`_ -
240+
`nextRowset() <https://php.net/manual/en/pdostatement.nextrowset.php>`_ -
241241
but no ``previousSet()``).
242242

243243
So, as a consequence, due to the design decision in PDO to not throw
@@ -246,8 +246,8 @@ and if used will cause the underlying connection to use a prepared statement.
246246

247247
Fortunately though, all the features of PDO are available, so multiple batches
248248
can be controlled within the migration by calling upon
249-
`nextRowset() <http://php.net/manual/en/pdostatement.nextrowset.php>`_
250-
and examining `errorInfo <http://php.net/manual/en/pdostatement.errorinfo.php>`_.
249+
`nextRowset() <https://php.net/manual/en/pdostatement.nextrowset.php>`_
250+
and examining `errorInfo <https://php.net/manual/en/pdostatement.errorinfo.php>`_.
251251

252252
Fetching Rows
253253
-------------

docs/en/namespaces.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ Let's take a closer look on how the paths are resolved, let's start with the non
9090
This is the directory where Phinx will look for migrations when migrating.
9191
NB. these migrations must not have a namespace.
9292

93-
.. image:: http://i.imgur.com/l84308Q.jpg
93+
.. image:: https://i.imgur.com/l84308Q.jpg
9494

9595
This image shows the path for "./db/migrations" where "Phinx" is the project root.
9696

9797
And the namespaced path would be resolved as shown below.
9898

9999
"./src/FooBar/db/migrations" would resolve to <project-root>/src/FooBar/db/migrations, which is where Phinx will look for migrations in the Foo\\Bar namespace.
100100

101-
.. image:: http://i.imgur.com/2mg0V8V.jpg
101+
.. image:: https://i.imgur.com/2mg0V8V.jpg
102102

103103
The file path would look like this, if the project-root was "Phinx"
104104

docs/fr/configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ Supported Adapters
241241

242242
Phinx currently supports the following database adapters natively:
243243

244-
* `MySQL <http://www.mysql.com/>`_: specify the ``mysql`` adapter.
245-
* `PostgreSQL <http://www.postgresql.org/>`_: specify the ``pgsql`` adapter.
246-
* `SQLite <http://www.sqlite.org/>`_: specify the ``sqlite`` adapter.
247-
* `SQL Server <http://www.microsoft.com/sqlserver>`_: specify the ``sqlsrv`` adapter.
244+
* `MySQL <https://www.mysql.com/>`_: specify the ``mysql`` adapter.
245+
* `PostgreSQL <https://www.postgresql.org/>`_: specify the ``pgsql`` adapter.
246+
* `SQLite <https://www.sqlite.org/>`_: specify the ``sqlite`` adapter.
247+
* `SQL Server <https://www.microsoft.com/sqlserver>`_: specify the ``sqlsrv`` adapter.
248248

249249
SQLite
250250
~~~~~~

docs/fr/migrations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Executing Queries
161161
Queries can be executed with the ``execute()`` and ``query()`` methods. The
162162
``execute()`` method returns the number of affected rows whereas the
163163
``query()`` method returns the result as a
164-
`PDOStatement <http://php.net/manual/en/class.pdostatement.php>`_::
164+
`PDOStatement <https://php.net/manual/en/class.pdostatement.php>`_::
165165

166166
<?php
167167

@@ -211,7 +211,7 @@ Queries can be executed with the ``execute()`` and ``query()`` methods. The
211211
If Phinx was to iterate any potential result sets, looking to see if one
212212
had an error, then Phinx would be denying access to all the results as there
213213
is no facility in PDO to get a previous result set
214-
`nextRowset() <http://php.net/manual/en/pdostatement.nextrowset.php>`_ -
214+
`nextRowset() <https://php.net/manual/en/pdostatement.nextrowset.php>`_ -
215215
but no ``previousSet()``).
216216

217217
So, as a consequence, due to the design decision in PDO to not throw
@@ -220,8 +220,8 @@ Queries can be executed with the ``execute()`` and ``query()`` methods. The
220220

221221
Fortunately though, all the features of PDO are available, so multiple batches
222222
can be controlled within the migration by calling upon
223-
`nextRowset() <http://php.net/manual/en/pdostatement.nextrowset.php>`_
224-
and examining `errorInfo <http://php.net/manual/en/pdostatement.errorinfo.php>`_.
223+
`nextRowset() <https://php.net/manual/en/pdostatement.nextrowset.php>`_
224+
and examining `errorInfo <https://php.net/manual/en/pdostatement.errorinfo.php>`_.
225225

226226
Fetching Rows
227227
-------------

docs/ja/configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ Phinx は ``PHINX_`` というプレフィックスが付いた環境変数を
236236

237237
Phinx は現在、次のデータベースアダプターをネイティブにサポートしています。
238238

239-
* `MySQL <http://www.mysql.com/>`_: ``mysql`` アダプターを指定。
240-
* `PostgreSQL <http://www.postgresql.org/>`_: ``pgsql`` アダプターを指定。
241-
* `SQLite <http://www.sqlite.org/>`_: ``sqlite`` アダプターを指定。
242-
* `SQL Server <http://www.microsoft.com/sqlserver>`_: ``sqlsrv`` アダプターを指定。
239+
* `MySQL <https://www.mysql.com/>`_: ``mysql`` アダプターを指定。
240+
* `PostgreSQL <https://www.postgresql.org/>`_: ``pgsql`` アダプターを指定。
241+
* `SQLite <https://www.sqlite.org/>`_: ``sqlite`` アダプターを指定。
242+
* `SQL Server <https://www.microsoft.com/sqlserver>`_: ``sqlsrv`` アダプターを指定。
243243

244244
SQLite
245245
~~~~~~

docs/ja/migrations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ up メソッドで記述された変換を元に戻すには、down メソッド
159159

160160
クエリーは、 ``execute()`` と ``query()`` メソッドで実行できます。
161161
``execute()`` メソッドは影響を受ける行の数を返しますが、 ``query()`` メソッドは結果を
162-
`PDOStatement <http://php.net/manual/ja/class.pdostatement.php>`_
162+
`PDOStatement <https://php.net/manual/ja/class.pdostatement.php>`_
163163
として返します。 ::
164164

165165
<?php
@@ -208,14 +208,14 @@ up メソッドで記述された変換を元に戻すには、down メソッド
208208
Phinx が潜在的な結果セットを反復して、1つのエラーがあることを発見した場合、
209209
以前の結果セットを得る機能が PDO にはないため、Phinx はすべての結果へのアクセスを拒否します。
210210
(``previousSet()`` ではなく
211-
`nextRowset() <http://php.net/manual/ja/pdostatement.nextrowset.php>`_) 。
211+
`nextRowset() <https://php.net/manual/ja/pdostatement.nextrowset.php>`_) 。
212212

213213
その結果、バッチ処理されたクエリーの例外を投げないようにする PDO の設計上の決定により、
214214
Phinx はクエリーのバッチが提供されたときにエラー処理を最大限にサポートすることができません。
215215

216216
幸いにも、PDO のすべての機能が利用可能であるため、
217-
`nextRowset() <http://php.net/manual/ja/pdostatement.nextrowset.php>`_
218-
を呼び出して `errorInfo <http://php.net/manual/ja/pdostatement.errorinfo.php>`_
217+
`nextRowset() <https://php.net/manual/ja/pdostatement.nextrowset.php>`_
218+
を呼び出して `errorInfo <https://php.net/manual/ja/pdostatement.errorinfo.php>`_
219219
を調べることで、複数のバッチをマイグレーション中に制御することができます。
220220

221221
行の取得

0 commit comments

Comments
 (0)