Your IP : 216.73.216.5


Current Path : /home/theafprt/conviviality360.com/wp-content/plugins/wp-whatsapp-chat/compatibility/
Upload File :
Current File : /home/theafprt/conviviality360.com/wp-content/plugins/wp-whatsapp-chat/compatibility/class-base.php

<?php

namespace QuadLayers\QLWAPP\Controllers;

class Base {

	protected static $instance;

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