vito/app/NotificationChannels/AbstractNotificationChannel.php
Saeed Vaziry e031bafba5
upgrade to Laravel 11 and schema squash (#245)
* upgrade to Laravel 11 and schema squash

* code style and npm audit fix

* fix #209
2024-06-24 23:03:02 +02:00

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) {}
}