2018-08-25 01:07:14 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This event is dispatched when the hourly cron is run
|
|
|
|
*/
|
|
|
|
class CronHourly
|
|
|
|
{
|
|
|
|
use Dispatchable, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
2018-09-21 02:27:39 +08:00
|
|
|
* CronHourly constructor.
|
2018-08-25 01:07:14 +08:00
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
2018-08-25 01:14:35 +08:00
|
|
|
}
|