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:
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 9262ec392d..485b5ec7bf 100644
--- a/core/UrlHelper.php
+++ b/core/UrlHelper.php
@@ -10,7 +10,7 @@ namespace Piwik;
/**
* Contains less commonly needed URL helper methods.
- *
+ *
*/
class UrlHelper
{
@@ -108,9 +108,9 @@ class UrlHelper
/**
* Returns a URL created from the result of the [parse_url](http://php.net/manual/en/function.parse-url.php)
* function.
- *
+ *
* Copied from the PHP comments at [http://php.net/parse_url](http://php.net/parse_url).
- *
+ *
* @param array $parsed Result of [parse_url](http://php.net/manual/en/function.parse-url.php).
* @return false|string The URL or `false` if `$parsed` isn't an array.
* @api