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