Issue #3304882 by poker10: [D7 PHP 8.2] Deprecated function: Creation of dynamic property in DrupalWebTestCase->prepareEnvironment()

merge-requests/3045/head
Juraj Nemec 2022-11-11 18:12:51 +01:00
parent 9f59535277
commit 6ca8181545
No known key found for this signature in database
GPG Key ID: 01EC3E1EECB5B2CA
1 changed files with 40 additions and 0 deletions

View File

@ -948,6 +948,46 @@ class DrupalWebTestCase extends DrupalTestCase {
*/
protected $redirect_count;
/**
* The original language.
*/
protected $originalLanguage;
/**
* The original language URL.
*/
protected $originalLanguageUrl;
/**
* The original default language.
*/
protected $originalLanguageDefault;
/**
* The original active installation profile.
*/
protected $originalProfile;
/**
* The original clean_url variable value.
*/
protected $originalCleanUrl;
/**
* The public files directory created for testing purposes.
*/
protected $public_files_directory;
/**
* The private files directory created for testing purposes.
*/
protected $private_files_directory;
/**
* The temporary files directory created for testing purposes.
*/
protected $temp_files_directory;
/**
* Constructor for DrupalWebTestCase.
*/