Skip to content

Commit

Permalink
Deploying version 2.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
philwp committed Jul 10, 2023
1 parent b2c3429 commit 2cae02e
Show file tree
Hide file tree
Showing 17 changed files with 867 additions and 2,691 deletions.
5 changes: 5 additions & 0 deletions class/Common/Compatibility/CompatibilityManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ class CompatibilityManager {
*/
private $http_helper;

/**
* @var Util
*/
private $util;

public function __construct(
Filesystem $filesystem,
Settings $settings,
Expand Down
10 changes: 9 additions & 1 deletion class/Common/Multisite/Multisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,28 @@ class Multisite
* @var Properties
*/
public $props;

/**
* @var Util
*/
public $util;

/**
* @var DynamicProperties
*/
public $dynamic_props;

/**
* @var MigrationStateManager
*/
public $migration_state_manager;

public function __construct(
/**
* @var bool|string
*/
private $domain_replace;

public function __construct(
MigrationStateManager $migration_state_manager,
Properties $properties,
Util $util
Expand Down
21 changes: 21 additions & 0 deletions class/Common/Profile/ProfileManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,53 +22,74 @@ class ProfileManager
* @var Http
*/
private $http;

/**
* @var Properties
*/
private $properties;

/**
* @var Settings
*/
private $settings;

/**
* @var MigrationStateManager
*/
private $state_manager;

/**
* @var Util
*/
private $util;

/**
* @var ErrorLog
*/
private $error_log;

/**
* @var Table
*/
private $table;

/**
* @var FormData
*/
private $form_data;

/**
* @var Helper
*/
private $http_helper;

/**
* @var Assets
*/
private $assets;

/**
* @var WPMDBRestAPIServer
*/
private $rest_API_server;

protected $valid_post_types;

/**
* @var ProfileImporter
*/
private $profile_importer;

/**
* @var string[]
*/
private $checkbox_options;

/**
* @var array
*/
private $default_profile;

/**
* ProfileManager constructor.
*
Expand Down
2 changes: 1 addition & 1 deletion class/Common/Properties/DynamicProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
class DynamicProperties {

use Singleton;
public $form_data, $fp, $find_replace_pairs, $maximum_chunk_size, $target_db_version, $doing_cli_migration, $addons, $attempting_to_connect_to, $is_addon;
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;
}
Loading

0 comments on commit 2cae02e

Please sign in to comment.