phpvms/app/Events/CronHourly.php

22 lines
336 B
PHP
Raw Normal View History

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;
/**
* CronHourly constructor.
2018-08-25 01:07:14 +08:00
*/
public function __construct()
{
}
2018-08-25 01:14:35 +08:00
}