diff --git a/extensions/yii/authclient/clients/Facebook.php b/extensions/yii/authclient/clients/Facebook.php index 4a5014d..3b78d47 100644 --- a/extensions/yii/authclient/clients/Facebook.php +++ b/extensions/yii/authclient/clients/Facebook.php @@ -11,7 +11,8 @@ use yii\authclient\OAuth2; /** * Facebook allows authentication via Facebook OAuth. - * In order to use Facebook OAuth you must register your application at [[https://developers.facebook.com/apps]]. + * + * In order to use Facebook OAuth you must register your application at . * * Example application configuration: * diff --git a/extensions/yii/authclient/clients/GitHub.php b/extensions/yii/authclient/clients/GitHub.php index ed7b6a5..6028512 100644 --- a/extensions/yii/authclient/clients/GitHub.php +++ b/extensions/yii/authclient/clients/GitHub.php @@ -11,7 +11,8 @@ use yii\authclient\OAuth2; /** * GitHub allows authentication via GitHub OAuth. - * In order to use GitHub OAuth you must register your application at [[https://github.com/settings/applications/new]]. + * + * In order to use GitHub OAuth you must register your application at . * * Example application configuration: * diff --git a/extensions/yii/authclient/clients/GoogleOAuth.php b/extensions/yii/authclient/clients/GoogleOAuth.php index 313358e..a94a4d3 100644 --- a/extensions/yii/authclient/clients/GoogleOAuth.php +++ b/extensions/yii/authclient/clients/GoogleOAuth.php @@ -11,7 +11,8 @@ use yii\authclient\OAuth2; /** * GoogleOAuth allows authentication via Google OAuth. - * In order to use Google OAuth you must register your application at [[https://code.google.com/apis/console#access]]. + * + * In order to use Google OAuth you must register your application at . * * Example application configuration: * diff --git a/extensions/yii/authclient/clients/LinkedIn.php b/extensions/yii/authclient/clients/LinkedIn.php index 130fda3..b4e8fdc 100644 --- a/extensions/yii/authclient/clients/LinkedIn.php +++ b/extensions/yii/authclient/clients/LinkedIn.php @@ -13,7 +13,8 @@ use Yii; /** * LinkedIn allows authentication via LinkedIn OAuth. - * In order to use linkedIn OAuth you must register your application at [[https://www.linkedin.com/secure/developer]]. + * + * In order to use linkedIn OAuth you must register your application at . * * Example application configuration: * diff --git a/extensions/yii/authclient/clients/Twitter.php b/extensions/yii/authclient/clients/Twitter.php index e3c99f9..1bee436 100644 --- a/extensions/yii/authclient/clients/Twitter.php +++ b/extensions/yii/authclient/clients/Twitter.php @@ -11,7 +11,8 @@ use yii\authclient\OAuth1; /** * Twitter allows authentication via Twitter OAuth. - * In order to use Twitter OAuth you must register your application at [[https://dev.twitter.com/apps/new]]. + * + * In order to use Twitter OAuth you must register your application at . * * Example application configuration: * diff --git a/extensions/yii/authclient/clients/YandexOAuth.php b/extensions/yii/authclient/clients/YandexOAuth.php index 667d019..e2ddb13 100644 --- a/extensions/yii/authclient/clients/YandexOAuth.php +++ b/extensions/yii/authclient/clients/YandexOAuth.php @@ -11,7 +11,8 @@ use yii\authclient\OAuth2; /** * YandexOAuth allows authentication via Yandex OAuth. - * In order to use Yandex OAuth you must register your application at [[https://oauth.yandex.ru/client/new]]. + * + * In order to use Yandex OAuth you must register your application at . * * Example application configuration: * diff --git a/framework/yii/BaseYii.php b/framework/yii/BaseYii.php index 9343764..5274a3b 100644 --- a/framework/yii/BaseYii.php +++ b/framework/yii/BaseYii.php @@ -493,7 +493,7 @@ class BaseYii * will be replaced with the given number. * * For more details on how plural rules are applied, please refer to: - * [[http://www.unicode.org/cldr/charts/supplemental/language_plural_rules.html]] + * * * @param string $category the message category. * @param string $message the message to be translated. diff --git a/framework/yii/helpers/BaseJson.php b/framework/yii/helpers/BaseJson.php index 019c7ef..feff138 100644 --- a/framework/yii/helpers/BaseJson.php +++ b/framework/yii/helpers/BaseJson.php @@ -28,7 +28,7 @@ class BaseJson * represented in terms of a [[JsExpression]] object. * @param mixed $value the data to be encoded * @param integer $options the encoding options. For more details please refer to - * [[http://www.php.net/manual/en/function.json-encode.php]] + * * @return string the encoding result */ public static function encode($value, $options = 0) diff --git a/framework/yii/validators/DateValidator.php b/framework/yii/validators/DateValidator.php index f5544a0..d79aa85 100644 --- a/framework/yii/validators/DateValidator.php +++ b/framework/yii/validators/DateValidator.php @@ -20,7 +20,7 @@ class DateValidator extends Validator { /** * @var string the date format that the value being validated should follow. - * Please refer to [[http://www.php.net/manual/en/datetime.createfromformat.php]] on + * Please refer to on * supported formats. */ public $format = 'Y-m-d'; diff --git a/framework/yii/web/Controller.php b/framework/yii/web/Controller.php index 540140f..c569d14 100644 --- a/framework/yii/web/Controller.php +++ b/framework/yii/web/Controller.php @@ -213,7 +213,7 @@ class Controller extends \yii\base\Controller * of the current request. * * @param integer $statusCode the HTTP status code. Defaults to 302. - * See [[http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html]] + * See * for details about HTTP status code * @return Response the current response object */ diff --git a/framework/yii/web/DbSession.php b/framework/yii/web/DbSession.php index d5d1742..48878b4 100644 --- a/framework/yii/web/DbSession.php +++ b/framework/yii/web/DbSession.php @@ -95,7 +95,7 @@ class DbSession extends Session /** * Updates the current session ID with a newly generated one . - * Please refer to [[http://php.net/session_regenerate_id]] for more details. + * Please refer to for more details. * @param boolean $deleteOldSession Whether to delete the old associated session file or not. */ public function regenerateID($deleteOldSession = false) diff --git a/framework/yii/web/Response.php b/framework/yii/web/Response.php index 79d94dd..9d8f523 100644 --- a/framework/yii/web/Response.php +++ b/framework/yii/web/Response.php @@ -127,7 +127,7 @@ class Response extends \yii\base\Response public $charset; /** * @var string the HTTP status description that comes together with the status code. - * @see [[httpStatuses]] + * @see httpStatuses */ public $statusText = 'OK'; /** @@ -614,7 +614,7 @@ class Response extends \yii\base\Response * of the current request. * * @param integer $statusCode the HTTP status code. Defaults to 302. - * See [[http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html]] + * See * for details about HTTP status code * @return static the response object itself */ diff --git a/framework/yii/web/Session.php b/framework/yii/web/Session.php index 903e9d9..8975c0e 100644 --- a/framework/yii/web/Session.php +++ b/framework/yii/web/Session.php @@ -192,7 +192,7 @@ class Session extends Component implements \IteratorAggregate, \ArrayAccess, \Co /** * Updates the current session ID with a newly generated one . - * Please refer to [[http://php.net/session_regenerate_id]] for more details. + * Please refer to for more details. * @param boolean $deleteOldSession Whether to delete the old associated session file or not. */ public function regenerateID($deleteOldSession = false)