From 5af55fa6b4c1a5cbc7a282fefb927838098b58c0 Mon Sep 17 00:00:00 2001 From: shibafu Date: Sat, 23 May 2020 15:39:28 +0900 Subject: [PATCH] fix typo --- app/Services/CheckinCsvImporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/CheckinCsvImporter.php b/app/Services/CheckinCsvImporter.php index 31ad354..ae90faf 100644 --- a/app/Services/CheckinCsvImporter.php +++ b/app/Services/CheckinCsvImporter.php @@ -45,7 +45,7 @@ class CheckinCsvImporter // Import return DB::transaction(function () use ($csv) { - $alreadyImportedCount = $this->user->ejaculations()->where('ejaculation.source', Ejaculation::SOURCE_CSV)->count(); + $alreadyImportedCount = $this->user->ejaculations()->where('ejaculations.source', Ejaculation::SOURCE_CSV)->count(); $errors = []; if (!in_array('日時', $csv->getHeader(), true)) {