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:
authorFabian Becker <halfdan@xnorfz.de>2013-04-02 18:42:13 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-04-02 18:42:13 +0400
commit3c6ff414d390a333e45fea181a3c5386a44a609f (patch)
tree07fe0a6f9e7878a08c3c3f6cc88f00ddb9483daf /core/Cookie.php
parent730bbbe74e98bc0d6cf675f93a28bd6ebc88b22f (diff)
Reformat method visibility according to PSR-2
https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md#45-abstract-final-and-static
Diffstat (limited to 'core/Cookie.php')
-rw-r--r--core/Cookie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cookie.php b/core/Cookie.php
index 46f9dc9e66..69cd83c188 100644
--- a/core/Cookie.php
+++ b/core/Cookie.php
@@ -378,7 +378,7 @@ class Piwik_Cookie
* @param string $value Value to be escaped
* @return mixed The value once cleaned.
*/
- static protected function escapeValue($value)
+ protected static function escapeValue($value)
{
return Piwik_Common::sanitizeInputValues($value);
}