diff --git a/app/Console/Cron/Hourly.php b/app/Console/Cron/Hourly.php index d90437c2..def6d7c5 100644 --- a/app/Console/Cron/Hourly.php +++ b/app/Console/Cron/Hourly.php @@ -24,4 +24,4 @@ class Hourly extends Command $this->redirectLoggingToStdout('cron'); event(new CronHourly()); } -} \ No newline at end of file +} diff --git a/app/Cron/Hourly/RemoveExpiredBids.php b/app/Cron/Hourly/RemoveExpiredBids.php index dd8876e2..319018a0 100644 --- a/app/Cron/Hourly/RemoveExpiredBids.php +++ b/app/Cron/Hourly/RemoveExpiredBids.php @@ -27,4 +27,4 @@ class RemoveExpiredBids extends Listener $date = Carbon::now()->subHours(setting('bids.expire_time')); Bid::whereDate('created_at', '<', $date)->delete(); } -} \ No newline at end of file +} diff --git a/app/Events/CronHourly.php b/app/Events/CronHourly.php index d9a7cc09..b4a76822 100644 --- a/app/Events/CronHourly.php +++ b/app/Events/CronHourly.php @@ -20,4 +20,4 @@ class CronHourly { } -} \ No newline at end of file +}