2019-05-10 22:33:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2019-06-19 13:48:23 +00:00
|
|
|
* Singleton class trait.
|
2019-05-10 22:33:12 +00:00
|
|
|
*
|
2019-06-21 09:40:39 +00:00
|
|
|
* @package Automattic/WooCommerce/Utilities
|
2019-05-10 22:33:12 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-21 09:40:39 +00:00
|
|
|
namespace Automattic\WooCommerce\RestApi\Utilities;
|
2019-05-10 22:33:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Singleton trait.
|
|
|
|
*/
|
2019-05-22 12:24:03 +00:00
|
|
|
trait SingletonTrait {
|
2019-05-10 22:33:12 +00:00
|
|
|
/**
|
|
|
|
* The single instance of the class.
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
protected static $instance = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function __construct() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get class instance.
|
|
|
|
*
|
|
|
|
* @return object Instance.
|
|
|
|
*/
|
|
|
|
final public static function instance() {
|
|
|
|
if ( null === static::$instance ) {
|
|
|
|
static::$instance = new static();
|
|
|
|
}
|
|
|
|
return static::$instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prevent cloning.
|
|
|
|
*/
|
|
|
|
private function __clone() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prevent unserializing.
|
|
|
|
*/
|
|
|
|
private function __wakeup() {}
|
|
|
|
}
|