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.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/PHPUnit/Framework/Fixture.php b/tests/PHPUnit/Framework/Fixture.php
index 57e914d362..c02f845cec 100644
--- a/tests/PHPUnit/Framework/Fixture.php
+++ b/tests/PHPUnit/Framework/Fixture.php
@@ -87,19 +87,9 @@ class Fixture extends \PHPUnit\Framework\Assert
public $dbName = false;
- /**
- * @deprecated has no effect now.
- */
- public $createConfig = true;
-
public $dropDatabaseInSetUp = true;
public $dropDatabaseInTearDown = true;
- /**
- * @deprecated
- */
- public $loadTranslations = true;
-
public $createSuperUser = true;
public $removeExistingSuperUser = true;
public $overwriteExisting = true;
@@ -962,13 +952,6 @@ class Fixture extends \PHPUnit\Framework\Assert
$dbConfig['dbname'] = $oldDbName;
}
- /**
- * @deprecated
- */
- public static function createAccessInstance()
- {
- }
-
public function dropDatabase($dbName = null)
{
$dbName = $dbName ?: $this->dbName ?: self::getConfig()->database_tests['dbname'];
@@ -998,17 +981,6 @@ class Fixture extends \PHPUnit\Framework\Assert
}
}
- /**
- * @param $type
- * @param bool $sanitize
- * @deprecated Use XssTesting
- */
- public static function makeXssContent($type, $sanitize = false)
- {
- $xssTesting = new XssTesting();
- return $xssTesting->forTwig($type, $sanitize);
- }
-
public static function updateDatabase($force = false)
{
Cache::deleteTrackerCache();