Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2013-12-03 05:10:28 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 05:10:28 +0400
commita347ebc205ad31ef7cdfe00fa104788879779ea1 (patch)
tree947fb9c5319dad48f7fbd7afbfee6ae2c1dbc73c /core/Date.php
parent685e25363a0bc5f4c9eb8d38dd24fee337b742da (diff)
refs #4244 converted more links
Diffstat (limited to 'core/Date.php')
-rw-r--r--core/Date.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Date.php b/core/Date.php
index 605908c581..88552f51a6 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -168,7 +168,7 @@ class Date
* Returns a new date object with the same timestamp as `$this` but with a new
* timezone.
*
- * See [getTimestamp](#getTimestamp) to see how the timezone is used.
+ * See {@link getTimestamp()} to see how the timezone is used.
*
* @param string $timezone eg, `'UTC'`, `'Europe/London'`, etc.
* @return Date
@@ -302,7 +302,7 @@ class Date
}
/**
- * See [toString](#toString).
+ * See {@link toString()}.
*
* @return string The current date in `'YYYY-MM-DD'` format.
*/
@@ -383,7 +383,7 @@ class Date
}
/**
- * Returns a date object set to now in UTC (same as [today](#today), except that the time is also set).
+ * Returns a date object set to now in UTC (same as {@link today()}, except that the time is also set).
*
* @return \Piwik\Date
*/
@@ -612,7 +612,7 @@ class Date
/**
* Adds N number of hours to a UNIX timestamp and returns the result. Using
- * this static function instead of [addHour](#addHour) will be faster since a
+ * this static function instead of {@link addHour()} will be faster since a
* Date instance does not have to be created.
*
* @param int $timestamp The timestamp to add to.