snipe-it/app/Models/Recipients/AlertRecipient.php

14 lines
205 B
PHP

<?php
namespace App\Models\Recipients;
use App\Models\Setting;
class AlertRecipient extends Recipient{
public function __construct(string $email)
{
$this->email = trim($email);
}
}