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/UrlHelper.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/UrlHelper.php')
-rw-r--r--core/UrlHelper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/UrlHelper.php b/core/UrlHelper.php
index 3c6eda5b0d..bbb4dbb2d7 100644
--- a/core/UrlHelper.php
+++ b/core/UrlHelper.php
@@ -197,7 +197,7 @@ class UrlHelper
/**
* Returns the value of a GET parameter $parameter in an URL query $urlQuery
*
- * @param string $urlQuery result of parse_url()['query'] and htmlentitied (& is &amp;) eg. module=test&amp;action=toto or ?page=test
+ * @param string $urlQuery result of parse_url()['query'] and htmlentitied (& is &amp;) eg. module=test&amp;action=toto or ?page=test
* @param string $parameter
* @return string|bool Parameter value if found (can be the empty string!), null if not found
*/
@@ -214,7 +214,7 @@ class UrlHelper
* Returns the path and query part from a URL.
* Eg. http://piwik.org/test/index.php?module=CoreHome will return /test/index.php?module=CoreHome
*
- * @param string $url either http://piwik.org/test or /
+ * @param string $url either http://piwik.org/test or /
* @return string
*/
public static function getPathAndQueryFromUrl($url)
@@ -245,7 +245,7 @@ class UrlHelper
* as the google keyword parameter couldn't be found.
*
* @see unit tests in /tests/core/Common.test.php
- * @param string $referrerUrl URL referrer URL, eg. $_SERVER['HTTP_REFERER']
+ * @param string $referrerUrl URL referrer URL, eg. $_SERVER['HTTP_REFERER']
* @return array|bool false if a keyword couldn't be extracted,
* or array(
* 'name' => 'Google',