From 53ce6d59932bcad5a430b972e85a2f60fd2bdbad Mon Sep 17 00:00:00 2001 From: denghy Date: Mon, 12 Aug 2019 14:37:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=9C=88=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/ExampleTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php index 6f072b63..67e1d76d 100644 --- a/tests/ExampleTest.php +++ b/tests/ExampleTest.php @@ -17,6 +17,7 @@ $end = Carbon::parse('2019-07')->endOfMonth(); for ($i = 0; $i <= $end->diffInMonths($start); $i++) { $month = $start->copy()->addMonths($i)->format('Y-m'); $conditions['month'] = $month; + echo $month . PHP_EOL; $export = new CompanyReportExport($conditions); $url = ExportService::store($export, $this->disk); }