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 'tests/PHPUnit/Framework/Fixture.php')
-rw-r--r--tests/PHPUnit/Framework/Fixture.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/PHPUnit/Framework/Fixture.php b/tests/PHPUnit/Framework/Fixture.php
index 8050865eff..96b2bc5282 100644
--- a/tests/PHPUnit/Framework/Fixture.php
+++ b/tests/PHPUnit/Framework/Fixture.php
@@ -530,12 +530,13 @@ class Fixture extends \PHPUnit\Framework\Assert
* @param null|string $type eg 'website' or 'mobileapp'
* @param null|string $settings eg 'website' or 'mobileapp'
* @param int $excludeUnknownUrls
+ * @param null|string $excludedParameters
* @return int idSite of website created
*/
public static function createWebsite($dateTime, $ecommerce = 0, $siteName = false, $siteUrl = false,
$siteSearch = 1, $searchKeywordParameters = null,
$searchCategoryParameters = null, $timezone = null, $type = null,
- $excludeUnknownUrls = 0)
+ $excludeUnknownUrls = 0, $excludedParameters = null)
{
if($siteName === false) {
$siteName = self::DEFAULT_SITE_NAME;
@@ -546,7 +547,7 @@ class Fixture extends \PHPUnit\Framework\Assert
$ecommerce,
$siteSearch, $searchKeywordParameters, $searchCategoryParameters,
$ips = null,
- $excludedQueryParameters = null,
+ $excludedQueryParameters = $excludedParameters,
$timezone,
$currency = null,
$group = null,