/**
  * Get the item rows
  *
  * @param \PatrickBroens\Pbsurvey\Domain\Model\Item $item The item
  * @param array $loadObjects The nested models which should be loaded
  * @return \PatrickBroens\Pbsurvey\Domain\Model\Row[] The item rows
  */
 protected function getRows($item, $loadObjects)
 {
     $rowRepository = GeneralUtility::makeInstance(RowRepository::class);
     return $rowRepository->findByItem($item->getUid(), $loadObjects);
 }