/**
  * Check if we want to parse it as multiple sheets
  * @return boolean
  */
 protected function parseAsMultiple()
 {
     return $this->excel->getSheetCount() > 1 && count($this->reader->getSelectedSheetIndices()) !== 1 || Config::get('excel.import.force_sheets_collection', false);
 }