| Server IP : 104.21.4.30 / Your IP : 104.23.243.67 Web Server : Apache System : Linux keen-cori.18-142-40-148.plesk.page 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64 User : simottodesign.com_2tntp341vs7 ( 10011) PHP Version : 8.3.31 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/vhosts/simottodesign.com/httpdocs/wp-content/plugins/wp-migrate-db/class/ |
Upload File : |
<?php
namespace DeliciousBrains\WPMDB;
/**
* Class Container
*
* THIS CLASS EXISTS AS A BACK-COMPAT FOR PRE 2.0 VERSIONS OF THE PLUGIN AND ADDONS
*
* @package DeliciousBrains\WPMDB
*/
class Container
{
public $providers = [];
public $classes = [];
public $props;
public static function getInstance()
{
}
public function get()
{
//For back-compat
return $this;
}
public function addClass($key, $instance)
{
$this->classes[$key] = $instance;
return $instance;
}
//For back-compat
public function add($key, $instance)
{
return $this;
}
public function has($id)
{
if (!array_key_exists($id, $this->classes)) {
return true;
}
return false;
}
//For back-compat
public function withArguments()
{
//NoOp
}
//For back-compat
public function register()
{
//NoOp
}
}