function simpletest_clean_environment

Same name in other branches
  1. 7.x modules/simpletest/simpletest.module \simpletest_clean_environment()

Removes all temporary database tables and directories.

Deprecated

in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or use \Drupal\Core\Test\EnvironmentCleaner::cleanEnvironment() instead.

See also

https://www.drupal.org/node/3076634

1 call to simpletest_clean_environment()
DeprecatedCleanupTest::testDeprecatedCleanFunctions in core/modules/simpletest/tests/src/Kernel/DeprecatedCleanupTest.php
@expectedDeprecation simpletest_clean_environment is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or useā€¦
1 string reference to 'simpletest_clean_environment'
SimpletestTestForm::buildForm in core/modules/simpletest/src/Form/SimpletestTestForm.php
Form constructor.

File

core/modules/simpletest/simpletest.module, line 612

Code

function simpletest_clean_environment() {
    @trigger_error(__FUNCTION__ . ' is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or use \\Drupal\\Core\\Test\\EnvironmentCleaner::cleanEnvironment() instead.. See https://www.drupal.org/node/3076634', E_USER_DEPRECATED);
    
    /* @var $cleaner \Drupal\simpletest\EnvironmentCleanerService */
    $cleaner = \Drupal::service('environment_cleaner');
    $cleaner->cleanEnvironment();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.