Ejemplo n.º 1
0
 /**
  * Returns the singleton instance of the class.
  *
  * @since 1.0.0
  *
  * @return object The class object.
  */
 public static function get_instance()
 {
     if (!isset(self::$instance) && !self::$instance instanceof Blox_Lite_Main) {
         self::$instance = new Blox_Lite_Main();
     }
     return self::$instance;
 }