2FAuth/app/Events/ScanForNewReleaseCalled.php

24 lines
487 B
PHP
Raw Normal View History

2022-09-21 21:50:41 +02:00
<?php
namespace App\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Log;
2022-09-21 21:50:41 +02:00
class ScanForNewReleaseCalled
2022-09-21 21:50:41 +02:00
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct()
{
Log::debug('ReleaseRadarActivated event dispatched');
2022-09-21 21:50:41 +02:00
}
}