Commit 5eed149f by Carsten Brandt

fixed links in phpdoc

parent 795a09c2
......@@ -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 <https://developers.facebook.com/apps>.
*
* Example application configuration:
*
......
......@@ -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 <https://github.com/settings/applications/new>.
*
* Example application configuration:
*
......
......@@ -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 <https://code.google.com/apis/console#access>.
*
* Example application configuration:
*
......
......@@ -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 <https://www.linkedin.com/secure/developer>.
*
* Example application configuration:
*
......
......@@ -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 <https://dev.twitter.com/apps/new>.
*
* Example application configuration:
*
......
......@@ -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 <https://oauth.yandex.ru/client/new>.
*
* Example application configuration:
*
......
......@@ -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]]
* <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.
......
......@@ -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]]
* <http://www.php.net/manual/en/function.json-encode.php>
* @return string the encoding result
*/
public static function encode($value, $options = 0)
......
......@@ -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 <http://www.php.net/manual/en/datetime.createfromformat.php> on
* supported formats.
*/
public $format = 'Y-m-d';
......
......@@ -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 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html>
* for details about HTTP status code
* @return Response the current response object
*/
......
......@@ -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 <http://php.net/session_regenerate_id> for more details.
* @param boolean $deleteOldSession Whether to delete the old associated session file or not.
*/
public function regenerateID($deleteOldSession = false)
......
......@@ -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 <http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html>
* for details about HTTP status code
* @return static the response object itself
*/
......
......@@ -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 <http://php.net/session_regenerate_id> for more details.
* @param boolean $deleteOldSession Whether to delete the old associated session file or not.
*/
public function regenerateID($deleteOldSession = false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment