mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
16e56646b8
* Fixed #5965: Allow multiple alert email addresses * Style changes based on PR feedback.
13 lines
155 B
PHP
13 lines
155 B
PHP
<?php
|
|
|
|
namespace App\Models\Recipients;
|
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
abstract class Recipient
|
|
{
|
|
use Notifiable;
|
|
|
|
protected $email;
|
|
}
|