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); }