File "Singleton.php"
Full Path: /home/lacostenacom/public_html/wp/wp-content/plugins/siteleads/lib/Core/Singleton.php
File size: 408 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace SiteLeads\Core;
trait Singleton {
protected static $instance;
/**
* Get the singleton instance
*
* @return static
*/
public static function getInstance() {
return isset( static::$instance )
? static::$instance
: static::$instance = new static;
}
/**
* Load singleton
*
* @return self
*/
public static function load() {
return static::getInstance();
}
}