Current Path : /var/www/wptbox/wp-content/mu-plugins/wp-nc-easywp/plugin/Support/ |
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]; } }