mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-12 04:59:30 +08:00
14 lines
258 B
PHP
14 lines
258 B
PHP
<?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;
|
|
}
|