BookStack/app/Activity/Notifications/Handlers/NotificationHandler.php

14 lines
258 B
PHP
Raw Normal View History

<?php
namespace BookStack\Activity\Notifications\Handlers;
use BookStack\Activity\Models\Loggable;
interface NotificationHandler
{
/**
* Run this handler.
*/
public function handle(string $activityType, string|Loggable $detail): void;
}