Your IP : 18.223.211.185


Current Path : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Support/
Upload File :
Current File : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Support/Cache.php

<?php

namespace WPNCEasyWP\Support;

abstract class Cache
{
  public static function boot()
  {

    static $instances = [];

    $calledClass = get_called_class();

    if (!isset($instances[$calledClass])) {
      $instances[$calledClass] = new static();
    }

    return $instances[$calledClass];
  }
}