akaunting/app/Events/Email/TooManyEmailsSent.php

16 lines
219 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Events\Email;
use App\Abstracts\Event;
class TooManyEmailsSent extends Event
{
public $user_id;
public function __construct(int $user_id)
{
$this->user_id = $user_id;
}
}