/**
  * Make sure there's only 1 instance of this class running.
  */
 public static function get_instance()
 {
     if (null === self::$instance) {
         self::$instance = new Avada_AvadaRedux_Migration();
     }
     return self::$instance;
 }