mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-06 10:44:33 +08:00
15 lines
326 B
PHP
15 lines
326 B
PHP
<?php
|
|
|
|
namespace BookStack\Activity\Notifications\Handlers;
|
|
|
|
use BookStack\Activity\Models\Loggable;
|
|
use BookStack\Users\Models\User;
|
|
|
|
class PageUpdateNotificationHandler implements NotificationHandler
|
|
{
|
|
public function handle(string $activityType, Loggable|string $detail, User $user): void
|
|
{
|
|
// TODO
|
|
}
|
|
}
|