/**
  * Gets the instance of this object.
  *
  * @return WP_Buoy_Settings
  */
 public static function get_instance()
 {
     if (null === self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }