/**
  * Getting instance of this object. If instance doesn't exists it will be created.
  *
  * @return object|Yoast_GA_Settings
  */
 public static function get_instance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new Yoast_GA_Settings();
     }
     return self::$instance;
 }