mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-04 23:13:41 +08:00
14 lines
283 B
PHP
14 lines
283 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Activity\Notifications\Handlers;
|
||
|
|
||
|
use BookStack\Activity\Models\Loggable;
|
||
|
|
||
|
class PageCreationNotificationHandler implements NotificationHandler
|
||
|
{
|
||
|
public function handle(string $activityType, Loggable|string $detail): void
|
||
|
{
|
||
|
// TODO
|
||
|
}
|
||
|
}
|