mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-29 20:23:52 +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;
|
||
|
}
|