| Current Path : /proc/thread-self/cwd/wp-content/plugins/anywhere-elementor-pro/includes/classes/ |
| 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() {
}
}