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:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/Option.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/Option.php')
-rw-r--r--core/Option.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/Option.php b/core/Option.php
index d986b87522..3e4ad542d3 100644
--- a/core/Option.php
+++ b/core/Option.php
@@ -59,7 +59,7 @@ class Option
/**
* Returns the option value for the requested option $name, fetching from database, if not in cache.
*
- * @param string $name Key
+ * @param string $name Key
* @return string|bool Value or false, if not found
*/
public function get($name)
@@ -83,14 +83,14 @@ class Option
*
* @param string $name
* @param string $value
- * @param int $autoLoad if set to 1, this option value will be automatically loaded; should be set to 1 for options that will always be used in the Piwik request.
+ * @param int $autoLoad if set to 1, this option value will be automatically loaded; should be set to 1 for options that will always be used in the Piwik request.
*/
public function set($name, $value, $autoLoad = 0)
{
$autoLoad = (int)$autoLoad;
Db::query('INSERT INTO `' . Common::prefixTable('option') . '` (option_name, option_value, autoload) ' .
- ' VALUES (?, ?, ?) ' .
- ' ON DUPLICATE KEY UPDATE option_value = ?',
+ ' VALUES (?, ?, ?) ' .
+ ' ON DUPLICATE KEY UPDATE option_value = ?',
array($name, $value, $autoLoad, $value));
$this->all[$name] = $value;
}
@@ -98,8 +98,8 @@ class Option
/**
* Delete key-value pair from database and reload cache.
*
- * @param string $name Key to match exactly
- * @param string $value Optional value
+ * @param string $name Key to match exactly
+ * @param string $value Optional value
*/
public function delete($name, $value = null)
{
@@ -120,8 +120,8 @@ class Option
* Delete key-value pair(s) from database and reload cache.
* The supplied pattern should use '%' as wildcards, and literal '_' should be escaped.
*
- * @param string $name Pattern of key to match.
- * @param string $value Optional value
+ * @param string $name Pattern of key to match.
+ * @param string $value Optional value
*/
public function deleteLike($name, $value = null)
{