get_id() !== $other_notice->get_id() || $this->get_group() !== $other_notice->get_group() ) { return true; } return $this->strip_nonce_field( $this->get_text() ) !== $this->strip_nonce_field( $other_notice->get_text() ); } private function strip_nonce_field( $text ) { return preg_replace( '//', '', $text ); } }