You are here

function simpletest_clean_temporary_directories in Drupal 8

Same name and namespace in other branches
  1. 7 modules/simpletest/simpletest.module \simpletest_clean_temporary_directories()

Finds all leftover temporary directories and removes them.

Deprecated

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

See also

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

1 call to simpletest_clean_temporary_directories()
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…

File

core/modules/simpletest/simpletest.module, line 645
Provides testing functionality.

Code

function simpletest_clean_temporary_directories() {
  @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 cleanTemporaryDirectories() method, or use \\Drupal\\Core\\Test\\EnvironmentCleaner::cleanTemporaryDirectories() instead. See https://www.drupal.org/node/3076634', E_USER_DEPRECATED);

  /* @var $cleaner \Drupal\simpletest\EnvironmentCleanerService */
  $cleaner = \Drupal::service('environment_cleaner');
  $cleaner
    ->cleanTemporaryDirectories();
}