mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
17 lines
428 B
PHP
17 lines
428 B
PHP
<?php
|
|
|
|
namespace App\NotificationChannels;
|
|
|
|
use App\Contracts\NotificationChannel as NotificationChannelContract;
|
|
use App\Models\NotificationChannel;
|
|
|
|
abstract class AbstractProvider implements NotificationChannelContract
|
|
{
|
|
protected NotificationChannel $notificationChannel;
|
|
|
|
public function __construct(NotificationChannel $notificationChannel)
|
|
{
|
|
$this->notificationChannel = $notificationChannel;
|
|
}
|
|
}
|