Docker/SNIPE-IT/app/Models/Recipients/AlertRecipient.php
2024-04-17 20:22:30 +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);
}
}