All checks were successful
Push image to registry / build-image (push) Successful in 4m24s
8 lines
168 B
PHP
8 lines
168 B
PHP
<?php
|
|
|
|
namespace App\Notification;
|
|
|
|
abstract class NotificationProvider {
|
|
abstract public static function send(Notification $notification, array $options): void;
|
|
}
|