/**
  * Creates an Instance of this Class
  *
  * @since   0.0.1
  * @access  public
  * @return  RW_Remote_Auth_Client
  */
 public static function get_instance()
 {
     if (NULL === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }