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:
authordiosmosis <benakamoorthi@fastmail.fm>2013-12-08 06:36:27 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2013-12-08 06:36:27 +0400
commit4cafa9e3c79051476c54ad81a3e73e7242e7775a (patch)
tree431054418bf63b5094e5c4be961ab420278d289e /core/Option.php
parent87d676dbff31adb4c1cf389cd66511434ab925ab (diff)
Refs #4200 revised some of class/method docs.
Diffstat (limited to 'core/Option.php')
-rw-r--r--core/Option.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Option.php b/core/Option.php
index 8c90022f99..c7908598c1 100644
--- a/core/Option.php
+++ b/core/Option.php
@@ -42,7 +42,7 @@ class Option
* Returns the option value for the requested option `$name`.
*
* @param string $name The option name.
- * @return string|bool The value or false, if not found.
+ * @return string|false The value or `false`, if not found.
*/
public static function get($name)
{
@@ -78,7 +78,7 @@ class Option
*
* @param string $namePattern Pattern of key to match. `'%'` characters should be used as wildcards, and literal
* `'_'` characters should be escaped.
- * @param string $value If supplied options will be deleted only if their value matches this value.
+ * @param string $value If supplied, options will be deleted only if their value matches this value.
*/
public static function deleteLike($namePattern, $value = null)
{