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/Settings
parent9b12e776ce827fd552c40a0e7ec3d12e98e2f552 (diff)
converted some links to use @link
Diffstat (limited to 'core/Settings')
-rw-r--r--core/Settings/Setting.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Settings/Setting.php b/core/Settings/Setting.php
index 8a72f39371..dc51f6e515 100644
--- a/core/Settings/Setting.php
+++ b/core/Settings/Setting.php
@@ -24,7 +24,7 @@ abstract class Setting
* Describes the setting's PHP data type. When saved, setting values will always be casted to this
* type.
*
- * See [Settings](#) for a list of supported data types.
+ * See {@link Piwik\Plugin\Settings} for a list of supported data types.
*
* @var string
*/
@@ -33,7 +33,7 @@ abstract class Setting
/**
* Describes how the setting should be manipulated through Piwik's UI.
*
- * See [Settings](#) for a list of supportted control types.
+ * See {@link Piwik\Plugin\Settings} for a list of supportted control types.
*
* @var string
*/
@@ -92,7 +92,7 @@ abstract class Setting
/**
* A closure that does some custom validation on the setting before the setting is persisted.
*
- * The closure should take two arguments: the setting value and the [Setting](#) instance being
+ * The closure should take two arguments: the setting value and the {@link Setting} instance being
* validated. If the value is found to be invalid, the closure should throw an exception with
* a message that describes the error.
*