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 03:02:24 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 03:02:24 +0400
commitb40e4d1da3296b05e5aa1abe64ee12548023da77 (patch)
tree74152033cf00301e04c640cf1ac9fe036bf31f19 /core/DataTable/Filter/ReplaceColumnNames.php
parent9b12e776ce827fd552c40a0e7ec3d12e98e2f552 (diff)
converted some links to use @link
Diffstat (limited to 'core/DataTable/Filter/ReplaceColumnNames.php')
-rw-r--r--core/DataTable/Filter/ReplaceColumnNames.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/DataTable/Filter/ReplaceColumnNames.php b/core/DataTable/Filter/ReplaceColumnNames.php
index 6c47bc2dbf..2a8adf4ddc 100644
--- a/core/DataTable/Filter/ReplaceColumnNames.php
+++ b/core/DataTable/Filter/ReplaceColumnNames.php
@@ -25,7 +25,7 @@ use Piwik\Tracker\GoalManager;
* (which are integers) with their string column names. In the database, reports are
* stored with integer metric names because it results in blobs that take up less space.
* When loading the reports, the column names must be replaced, which is handled by this
- * class. (See [Metrics](#) for more information about integer metric names.)
+ * class. (See {@link Piwik\Metrics} for more information about integer metric names.)
*
* **Basic example**
*
@@ -55,7 +55,7 @@ class ReplaceColumnNames extends Filter
* array('OLD_COLUMN_NAME' => 'NEW_COLUMN NAME',
* 'OLD_COLUMN_NAME2' => 'NEW_COLUMN NAME2')
* ```
- * If null, [Metrics::$mappingFromIdToName](#) is used.
+ * If null, {@link Piwik\Metrics::$mappingFromIdToName} is used.
*/
public function __construct($table, $mappingToApply = null)
{
@@ -67,7 +67,7 @@ class ReplaceColumnNames extends Filter
}
/**
- * See [ReplaceColumnNames](#).
+ * See {@link ReplaceColumnNames}.
*
* @param DataTable $table
*/