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

15 lines
326 B
PHP
Raw Normal View History

<?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
}
}