Kirki_Fonts::get_instance PHP Method

get_instance() public static method

Prevents performance issues since this is only loaded once.
public static get_instance ( ) : object
return object Kirki_Fonts
        public static function get_instance()
        {
            if (null === self::$instance) {
                self::$instance = new self();
            }
            return self::$instance;
        }