PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
$#$#$#

Dir : /home/telusvwg/alwatnitraders.com/wp-content/plugins/wp-migrate-db-pro/class/
Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 66.29.132.192
Choose File :

Url:
Dir : /home/telusvwg/alwatnitraders.com/wp-content/plugins/wp-migrate-db-pro/class/Container.php

<?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
    }
}