2024-04-21 14:42:52 +02:00

12 lines
180 B
PHP

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