mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 22:32:40 +08:00
Update to https protocol for php.net links (#17168) [skip ci]
* Updated php.net link for some MemCache properties [skip ci] * Changed protocol to https for links to php.net in comments * Changed protocol to https for links to php.net in code * Changed www.php.net (http) to secure.php.net (https) in comments * Changed www.php.net (http) to secure.php.net (https) in code * Changed protocol to https for links to php.net in UPGRADE.md * Changed protocol to https for links to pecl.php.net in comments * Changed us.php.net to secure.php.net (https) in comments * Changed protocol to https for links to php.net in docs * Changed www.php.net (http) to secure.php.net (https) in docs * Changed protocol to https for links to pecl.php.net in docs * Changed ru/jp.php.net to secure.php.net (https) in docs Don't sure about russian guide: is this links meant to be for guide on russian, or not?
This commit is contained in:
committed by
Alexander Makarov
parent
8cc74f5c57
commit
bdb7c64910
@ -11,7 +11,7 @@ use Yii;
|
||||
use yii\base\InvalidRouteException;
|
||||
|
||||
// define STDIN, STDOUT and STDERR if the PHP SAPI did not define them (e.g. creating console application in web env)
|
||||
// http://php.net/manual/en/features.commandline.io-streams.php
|
||||
// https://secure.php.net/manual/en/features.commandline.io-streams.php
|
||||
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
|
||||
defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
|
||||
defined('STDERR') or define('STDERR', fopen('php://stderr', 'w'));
|
||||
|
||||
@ -61,7 +61,7 @@ class UnknownCommandException extends Exception
|
||||
* available commands. The Levenshtein distance is defined as the minimal number of
|
||||
* characters you have to replace, insert or delete to transform str1 into str2.
|
||||
*
|
||||
* @see http://php.net/manual/en/function.levenshtein.php
|
||||
* @see https://secure.php.net/manual/en/function.levenshtein.php
|
||||
* @return array a list of suggested alternatives sorted by similarity.
|
||||
*/
|
||||
public function getSuggestedAlternatives()
|
||||
@ -107,7 +107,7 @@ class UnknownCommandException extends Exception
|
||||
* available commands. The Levenshtein distance is defined as the minimal number of
|
||||
* characters you have to replace, insert or delete to transform str1 into str2.
|
||||
*
|
||||
* @see http://php.net/manual/en/function.levenshtein.php
|
||||
* @see https://secure.php.net/manual/en/function.levenshtein.php
|
||||
* @param array $actions available command names.
|
||||
* @param string $command the command to compare to.
|
||||
* @return array a list of suggested alternatives sorted by similarity.
|
||||
|
||||
Reference in New Issue
Block a user