/**
  * Get accessor method for instance property.
  *
  * @return WP_MailChimp_Feed Instance of the class.
  */
 public static function get_instance()
 {
     if (null == self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }
<?php

WP_MailChimp_Feed::get_instance();