Current File : /home/escuelai/public_html/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;
}
}