param; $manager = new SeasonTicketContractSelectionManager($param->selectionRecordNo); if (!$manager->checkHash($param->entryRecordNo, $param->fs)) { return $this->failedResponse(); } if ($manager->getSelection()->status !== SelectionStatus::ENTRY_ACCEPTING) { throw new GeneralErrorMessageException("募集期間が終了しています"); } $entry = $manager->getEntry($param->entryRecordNo); return $this->successResponse($entry->toArray()); } }