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 <benaka@piwik.pro>2014-11-04 22:28:02 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-04 22:28:02 +0300
commit26182f1004eb5c22a2963abbfd540526b45364f7 (patch)
tree3b87730b4eb1a726fa14c9c325f91365b19519f1 /core/CliMulti.php
parentb328b5ebc10fdfeeff6424933cb6ba172c6c2cb8 (diff)
Add note about CliMulti URL encoding to method docs.
Diffstat (limited to 'core/CliMulti.php')
-rw-r--r--core/CliMulti.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/CliMulti.php b/core/CliMulti.php
index 8ecc03043c..992a4e1dd4 100644
--- a/core/CliMulti.php
+++ b/core/CliMulti.php
@@ -51,7 +51,11 @@ class CliMulti {
* If multi cli is not supported (eg windows) it will initiate an HTTP request instead (not async).
*
* @param string[] $piwikUrls An array of urls, for instance:
- * array('http://www.example.com/piwik?module=API...')
+ *
+ * `array('http://www.example.com/piwik?module=API...')`
+ *
+ * **Make sure query parameter values are properly encoded in the URLs.**
+ *
* @return array The response of each URL in the same order as the URLs. The array can contain null values in case
* there was a problem with a request, for instance if the process died unexpected.
*/