vito/app/NotificationChannels/AbstractProvider.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

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;
}
}