Skip to content

Commit 2cae02e

Browse files
committed
Deploying version 2.6.8
1 parent b2c3429 commit 2cae02e

File tree

17 files changed

+867
-2691
lines changed

17 files changed

+867
-2691
lines changed

class/Common/Compatibility/CompatibilityManager.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ class CompatibilityManager {
7878
*/
7979
private $http_helper;
8080

81+
/**
82+
* @var Util
83+
*/
84+
private $util;
85+
8186
public function __construct(
8287
Filesystem $filesystem,
8388
Settings $settings,

class/Common/Multisite/Multisite.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,28 @@ class Multisite
1515
* @var Properties
1616
*/
1717
public $props;
18+
1819
/**
1920
* @var Util
2021
*/
2122
public $util;
23+
2224
/**
2325
* @var DynamicProperties
2426
*/
2527
public $dynamic_props;
28+
2629
/**
2730
* @var MigrationStateManager
2831
*/
2932
public $migration_state_manager;
3033

31-
public function __construct(
34+
/**
35+
* @var bool|string
36+
*/
37+
private $domain_replace;
38+
39+
public function __construct(
3240
MigrationStateManager $migration_state_manager,
3341
Properties $properties,
3442
Util $util

class/Common/Profile/ProfileManager.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,53 +22,74 @@ class ProfileManager
2222
* @var Http
2323
*/
2424
private $http;
25+
2526
/**
2627
* @var Properties
2728
*/
2829
private $properties;
30+
2931
/**
3032
* @var Settings
3133
*/
3234
private $settings;
35+
3336
/**
3437
* @var MigrationStateManager
3538
*/
3639
private $state_manager;
40+
3741
/**
3842
* @var Util
3943
*/
4044
private $util;
45+
4146
/**
4247
* @var ErrorLog
4348
*/
4449
private $error_log;
50+
4551
/**
4652
* @var Table
4753
*/
4854
private $table;
55+
4956
/**
5057
* @var FormData
5158
*/
5259
private $form_data;
60+
5361
/**
5462
* @var Helper
5563
*/
5664
private $http_helper;
65+
5766
/**
5867
* @var Assets
5968
*/
6069
private $assets;
70+
6171
/**
6272
* @var WPMDBRestAPIServer
6373
*/
6474
private $rest_API_server;
6575

6676
protected $valid_post_types;
77+
6778
/**
6879
* @var ProfileImporter
6980
*/
7081
private $profile_importer;
7182

83+
/**
84+
* @var string[]
85+
*/
86+
private $checkbox_options;
87+
88+
/**
89+
* @var array
90+
*/
91+
private $default_profile;
92+
7293
/**
7394
* ProfileManager constructor.
7495
*

class/Common/Properties/DynamicProperties.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
class DynamicProperties {
1717

1818
use Singleton;
19-
public $form_data, $fp, $find_replace_pairs, $maximum_chunk_size, $target_db_version, $doing_cli_migration, $addons, $attempting_to_connect_to, $is_addon;
19+
public $form_data, $fp, $find_replace_pairs, $maximum_chunk_size, $target_db_version, $doing_cli_migration, $addons, $attempting_to_connect_to, $is_addon, $post_data, $profile;
2020
}

0 commit comments

Comments
 (0)