/**
  * Return active instance of this class, create one if it doesn't exist
  *
  * @return WP_Stream_Notifications_List_Table
  */
 public static function get_instance()
 {
     if (empty(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }