2023-07-19 12:03:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Activity\Notifications\Handlers;
|
|
|
|
|
|
|
|
use BookStack\Activity\Models\Loggable;
|
2023-08-04 13:27:29 +02:00
|
|
|
use BookStack\Users\Models\User;
|
2023-07-19 12:03:05 +02:00
|
|
|
|
|
|
|
class PageUpdateNotificationHandler implements NotificationHandler
|
|
|
|
{
|
2023-08-04 13:27:29 +02:00
|
|
|
public function handle(string $activityType, Loggable|string $detail, User $user): void
|
2023-07-19 12:03:05 +02:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
}
|