Example #1
0
 /**
  * Get the one, true instance of this class.
  * Prevents performance issues since this is only loaded once.
  *
  * @return object Kirki_Fonts
  */
 public static function get_instance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }