Mercurial > hg > isophonics-drupal-site
comparison core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
1 <?php | 1 <?php |
2 | 2 |
3 namespace Drupal\system\Tests\Installer; | 3 namespace Drupal\system\Tests\Installer; |
4 | |
5 @trigger_error(__NAMESPACE__ . '\ConfigAfterInstallerTestBase is deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Instead, use \Drupal\FunctionalTests\Installer\ConfigAfterInstallerTestBase.', E_USER_DEPRECATED); | |
4 | 6 |
5 use Drupal\Core\Config\FileStorage; | 7 use Drupal\Core\Config\FileStorage; |
6 use Drupal\Core\Config\InstallStorage; | 8 use Drupal\Core\Config\InstallStorage; |
7 use Drupal\Core\Config\StorageInterface; | 9 use Drupal\Core\Config\StorageInterface; |
8 use Drupal\KernelTests\AssertConfigTrait; | 10 use Drupal\KernelTests\AssertConfigTrait; |
9 use Drupal\simpletest\InstallerTestBase; | 11 use Drupal\simpletest\InstallerTestBase; |
10 | 12 |
11 /** | 13 /** |
12 * Provides a class for install profiles to check their installed config. | 14 * Provides a class for install profiles to check their installed config. |
15 * | |
16 * @deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. | |
17 * Use \Drupal\FunctionalTests\Installer\ConfigAfterInstallerTestBase. | |
13 */ | 18 */ |
14 abstract class ConfigAfterInstallerTestBase extends InstallerTestBase { | 19 abstract class ConfigAfterInstallerTestBase extends InstallerTestBase { |
15 | 20 |
16 use AssertConfigTrait; | 21 use AssertConfigTrait; |
17 | 22 |