Implement cron to remove expired bids

This commit is contained in:
Kevin
2018-08-25 01:07:14 +08:00
parent 1c32ef838d
commit 796053cfa5
8 changed files with 242 additions and 23 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace App\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
/**
* This event is dispatched when the hourly cron is run
* @package App\Events
*/
class CronHourly
{
use Dispatchable, SerializesModels;
/**
* CronNightly constructor.
*/
public function __construct()
{
}
}