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 23:16:26 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 23:16:26 +0400
commit0e756f1c7b6650c0df45c06bcebe0abe841f745e (patch)
tree1147922936b7414aae4efe4fd9dc451b3fa2f1a3 /core/Settings
parent9281714affdf498333912858747de2c3cdf85f8d (diff)
refs #4244 fix some links
Diffstat (limited to 'core/Settings')
-rw-r--r--core/Settings/Setting.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Settings/Setting.php b/core/Settings/Setting.php
index 2e0f775f6f..ba58abbc34 100644
--- a/core/Settings/Setting.php
+++ b/core/Settings/Setting.php
@@ -58,7 +58,7 @@ abstract class Setting
* The setting value will be validated if this field is set. If the value is not one of the
* available values, an error will be triggered.
*
- * _Note: If a custom validator is supplied (see {@link validate()}), the setting value will
+ * _Note: If a custom validator is supplied (see {@link $validate}), the setting value will
* not be validated._
*
* @var null|array
@@ -114,7 +114,7 @@ abstract class Setting
* A closure that transforms the setting value. If supplied, this closure will be executed after
* the setting has been validated.
*
- * _Note: If a transform is supplied, the setting's {@link type()} has no effect. This means the
+ * _Note: If a transform is supplied, the setting's {@link $type} has no effect. This means the
* transformation function will be responsible for casting the setting value to the appropriate
* data type._
*