FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
wp-whatsapp-chat
/
compatibility
Edit File: 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; } }
Save
Back