13 lines
283 B
PHP
13 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
|
|
}
|
|
}
|