/** * Function to create and return previously created instance * * @return GUMP */ public static function get_instance() { if (self::$instance === null) { self::$instance = new self(); } return self::$instance; }