| Current Path : /home/servydhq/rxpharmacydelivery.com/wp-content/plugins/chatway-live-chat/app/ |
| Current File : /home/servydhq/rxpharmacydelivery.com/wp-content/plugins/chatway-live-chat/app/Singleton.php |
<?php
/**
* Singleton
*
* @author : Chatway
* @license : GPLv3
* */
namespace Chatway\App;
trait Singleton
{
/**
* @var mixed
*/
private static $instance;
/**
* @return static
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
}