Skip to content

Commit e79a01f

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent 98ff409 commit e79a01f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

docs/modules/Db.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Warning. Using PHAR file and composer in the same project can cause unexpected e
3535
Access a database.
3636

3737
The most important function of this module is to clean a database before each test.
38-
This module also provides actions to perform checks in a database, e.g. [seeInDatabase()](https://codeception.com/docs/modules/Db#seeInDatabase)
38+
This module also provides actions to perform checks in a database, e.g. [seeInDatabase()](http://codeception.com/docs/modules/Db#seeInDatabase)
3939

4040
In order to have your database populated with data you need a raw SQL dump.
4141
Simply put the dump in the `tests/_data` directory (by default) and specify the path in the config.
@@ -67,11 +67,11 @@ if you run into problems loading dumps and cleaning databases.
6767
* cleanup: false - whether the dump should be reloaded before each test
6868
* reconnect: false - whether the module should reconnect to the database before each test
6969
* waitlock: 0 - wait lock (in seconds) that the database session should use for DDL statements
70-
* ssl_key - path to the SSL key (MySQL specific, @see https://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-key)
71-
* ssl_cert - path to the SSL certificate (MySQL specific, @see https://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-ssl-cert)
72-
* ssl_ca - path to the SSL certificate authority (MySQL specific, @see https://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-ssl-ca)
73-
* ssl_verify_server_cert - disables certificate CN verification (MySQL specific, @see https://php.net/manual/de/ref.pdo-mysql.php)
74-
* ssl_cipher - list of one or more permissible ciphers to use for SSL encryption (MySQL specific, @see https://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-cipher)
70+
* ssl_key - path to the SSL key (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-key)
71+
* ssl_cert - path to the SSL certificate (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-ssl-cert)
72+
* ssl_ca - path to the SSL certificate authority (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-ssl-ca)
73+
* ssl_verify_server_cert - disables certificate CN verification (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php)
74+
* ssl_cipher - list of one or more permissible ciphers to use for SSL encryption (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-cipher)
7575
* databases - include more database configs and switch between them in tests.
7676
* initial_queries - list of queries to be executed right after connection to the database has been initiated, i.e. creating the database if it does not exist or preparing the database collation
7777
* skip_cleanup_if_failed - Do not perform the cleanup if the tests failed. If this is used, manual cleanup might be required when re-running

docs/modules/Doctrine2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Warning. Using PHAR file and composer in the same project can cause unexpected e
3232

3333

3434

35-
Access the database using [Doctrine2 ORM](https://docs.doctrine-project.org/projects/doctrine-orm/en/latest/).
35+
Access the database using [Doctrine2 ORM](http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/).
3636

3737
When used with Symfony or Zend Framework 2, Doctrine's Entity Manager is automatically retrieved from Service Locator.
3838
Set up your `functional.suite.yml` like this:

docs/modules/FTP.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ Supported and tested FTP types are:
5050
* SFTP
5151

5252
Connection uses php build in FTP client for FTP,
53-
connection to SFTP uses [phpseclib](https://phpseclib.sourceforge.net/) pulled in using composer.
53+
connection to SFTP uses [phpseclib](http://phpseclib.sourceforge.net/) pulled in using composer.
5454

55-
For SFTP, add [phpseclib](https://phpseclib.sourceforge.net/) to require list.
55+
For SFTP, add [phpseclib](http://phpseclib.sourceforge.net/) to require list.
5656
{% highlight yaml %}
5757
"require": {
5858
"phpseclib/phpseclib": "^2.0.14"

docs/modules/Memcache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Warning. Using PHAR file and composer in the same project can cause unexpected e
3232

3333

3434

35-
Connects to [memcached](https://www.memcached.org/) using either _Memcache_ or _Memcached_ extension.
35+
Connects to [memcached](http://www.memcached.org/) using either _Memcache_ or _Memcached_ extension.
3636

3737
Performs a cleanup by flushing all values after each test run.
3838

docs/modules/Yii2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Warning. Using PHAR file and composer in the same project can cause unexpected e
3232

3333

3434

35-
This module provides integration with [Yii framework](https://www.yiiframework.com/) (2.0).
35+
This module provides integration with [Yii framework](http://www.yiiframework.com/) (2.0).
3636

3737
It initializes the Yii framework in a test environment and provides actions
3838
for functional testing.
@@ -140,7 +140,7 @@ modules:
140140
### Fixtures
141141

142142
This module allows to use
143-
[fixtures](https://www.yiiframework.com/doc-2.0/guide-test-fixtures.html)
143+
[fixtures](http://www.yiiframework.com/doc-2.0/guide-test-fixtures.html)
144144
inside a test. There are two ways to do that. Fixtures can either be loaded
145145
with the [haveFixtures](#haveFixtures) method inside a test:
146146

0 commit comments

Comments
 (0)