mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04: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
|
|
}
|
|
}
|