Browse Source

fixed links in phpdoc

tags/2.0.0-beta
Carsten Brandt 11 years ago
parent
commit
5eed149f24
  1. 3
      extensions/yii/authclient/clients/Facebook.php
  2. 3
      extensions/yii/authclient/clients/GitHub.php
  3. 3
      extensions/yii/authclient/clients/GoogleOAuth.php
  4. 3
      extensions/yii/authclient/clients/LinkedIn.php
  5. 3
      extensions/yii/authclient/clients/Twitter.php
  6. 3
      extensions/yii/authclient/clients/YandexOAuth.php
  7. 2
      framework/yii/BaseYii.php
  8. 2
      framework/yii/helpers/BaseJson.php
  9. 2
      framework/yii/validators/DateValidator.php
  10. 2
      framework/yii/web/Controller.php
  11. 2
      framework/yii/web/DbSession.php
  12. 4
      framework/yii/web/Response.php
  13. 2
      framework/yii/web/Session.php

3
extensions/yii/authclient/clients/Facebook.php

@ -11,7 +11,8 @@ use yii\authclient\OAuth2;
/** /**
* Facebook allows authentication via Facebook OAuth. * 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 <https://developers.facebook.com/apps>.
* *
* Example application configuration: * Example application configuration:
* *

3
extensions/yii/authclient/clients/GitHub.php

@ -11,7 +11,8 @@ use yii\authclient\OAuth2;
/** /**
* GitHub allows authentication via GitHub OAuth. * 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 <https://github.com/settings/applications/new>.
* *
* Example application configuration: * Example application configuration:
* *

3
extensions/yii/authclient/clients/GoogleOAuth.php

@ -11,7 +11,8 @@ use yii\authclient\OAuth2;
/** /**
* GoogleOAuth allows authentication via Google OAuth. * 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 <https://code.google.com/apis/console#access>.
* *
* Example application configuration: * Example application configuration:
* *

3
extensions/yii/authclient/clients/LinkedIn.php

@ -13,7 +13,8 @@ use Yii;
/** /**
* LinkedIn allows authentication via LinkedIn OAuth. * 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 <https://www.linkedin.com/secure/developer>.
* *
* Example application configuration: * Example application configuration:
* *

3
extensions/yii/authclient/clients/Twitter.php

@ -11,7 +11,8 @@ use yii\authclient\OAuth1;
/** /**
* Twitter allows authentication via Twitter OAuth. * 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 <https://dev.twitter.com/apps/new>.
* *
* Example application configuration: * Example application configuration:
* *

3
extensions/yii/authclient/clients/YandexOAuth.php

@ -11,7 +11,8 @@ use yii\authclient\OAuth2;
/** /**
* YandexOAuth allows authentication via Yandex OAuth. * 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 <https://oauth.yandex.ru/client/new>.
* *
* Example application configuration: * Example application configuration:
* *

2
framework/yii/BaseYii.php

@ -493,7 +493,7 @@ class BaseYii
* will be replaced with the given number. * will be replaced with the given number.
* *
* For more details on how plural rules are applied, please refer to: * For more details on how plural rules are applied, please refer to:
* [[http://www.unicode.org/cldr/charts/supplemental/language_plural_rules.html]] * <http://www.unicode.org/cldr/charts/supplemental/language_plural_rules.html>
* *
* @param string $category the message category. * @param string $category the message category.
* @param string $message the message to be translated. * @param string $message the message to be translated.

2
framework/yii/helpers/BaseJson.php

@ -28,7 +28,7 @@ class BaseJson
* represented in terms of a [[JsExpression]] object. * represented in terms of a [[JsExpression]] object.
* @param mixed $value the data to be encoded * @param mixed $value the data to be encoded
* @param integer $options the encoding options. For more details please refer to * @param integer $options the encoding options. For more details please refer to
* [[http://www.php.net/manual/en/function.json-encode.php]] * <http://www.php.net/manual/en/function.json-encode.php>
* @return string the encoding result * @return string the encoding result
*/ */
public static function encode($value, $options = 0) public static function encode($value, $options = 0)

2
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. * @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 <http://www.php.net/manual/en/datetime.createfromformat.php> on
* supported formats. * supported formats.
*/ */
public $format = 'Y-m-d'; public $format = 'Y-m-d';

2
framework/yii/web/Controller.php

@ -213,7 +213,7 @@ class Controller extends \yii\base\Controller
* of the current request. * of the current request.
* *
* @param integer $statusCode the HTTP status code. Defaults to 302. * @param integer $statusCode the HTTP status code. Defaults to 302.
* See [[http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html]] * See <http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html>
* for details about HTTP status code * for details about HTTP status code
* @return Response the current response object * @return Response the current response object
*/ */

2
framework/yii/web/DbSession.php

@ -95,7 +95,7 @@ class DbSession extends Session
/** /**
* Updates the current session ID with a newly generated one . * 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 <http://php.net/session_regenerate_id> for more details.
* @param boolean $deleteOldSession Whether to delete the old associated session file or not. * @param boolean $deleteOldSession Whether to delete the old associated session file or not.
*/ */
public function regenerateID($deleteOldSession = false) public function regenerateID($deleteOldSession = false)

4
framework/yii/web/Response.php

@ -127,7 +127,7 @@ class Response extends \yii\base\Response
public $charset; public $charset;
/** /**
* @var string the HTTP status description that comes together with the status code. * @var string the HTTP status description that comes together with the status code.
* @see [[httpStatuses]] * @see httpStatuses
*/ */
public $statusText = 'OK'; public $statusText = 'OK';
/** /**
@ -614,7 +614,7 @@ class Response extends \yii\base\Response
* of the current request. * of the current request.
* *
* @param integer $statusCode the HTTP status code. Defaults to 302. * @param integer $statusCode the HTTP status code. Defaults to 302.
* See [[http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html]] * See <http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html>
* for details about HTTP status code * for details about HTTP status code
* @return static the response object itself * @return static the response object itself
*/ */

2
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 . * 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 <http://php.net/session_regenerate_id> for more details.
* @param boolean $deleteOldSession Whether to delete the old associated session file or not. * @param boolean $deleteOldSession Whether to delete the old associated session file or not.
*/ */
public function regenerateID($deleteOldSession = false) public function regenerateID($deleteOldSession = false)

Loading…
Cancel
Save