Your IP : 216.73.216.213


Current Path : /proc/thread-self/cwd/wp-content/plugins/anywhere-elementor-pro/includes/classes/
Upload File :
Current File : //proc/thread-self/cwd/wp-content/plugins/anywhere-elementor-pro/includes/classes/woo-master.php

<?php

namespace Aepro\Classes;

class WooMaster {

	private static $_instance = null;

	public static function instance() {
		if ( is_null( self::$_instance ) ) {
			self::$_instance = new self();
		}
		return self::$_instance;
	}

	public function __construct() {
	}
}