lbrypress/classes/LBRY_Network_Publisher.php

21 lines
361 B
PHP

<?php
/**
* Class for publishing to the LBRY Network
*
* @package LBRYPress
*/
class LBRY_Network_Publisher
{
private static $instance = null;
public static function get_instance()
{
// Create the object
if (self::$instance === null) {
self::$instance = new self;
}
return self::$instance;
}
}