2FAuth/app/Events/ReleaseRadarActivated.php

29 lines
531 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;
class ReleaseRadarActivated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* @var \App\Models\Group
*/
// public $group;
/**
* Create a new event instance.
*
* @param \App\Models\Group $group
* @return void
*/
public function __construct()
{
// $this->group = $group;
}
}