/**
  * Retrieve the current session instance.
  *
  * @param bool $session_id Session ID from which to populate data.
  *
  * @return bool|RM_WP_Session
  */
 public static function get_instance()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }