/** * Returns single instance of the class * * @return \YWRR_Review_Reminder * @since 1.1.5 */ public static function get_instance() { if (is_null(self::$instance)) { self::$instance = new self(); } return self::$instance; }