private function getNewEventNumbers(ProductReturn $return)
 {
     $numberOfExistingEvents = count($return->getEvents()) - count($return->getNewEvents());
     return array_filter(range($numberOfExistingEvents, count($return->getEvents())));
 }