14 lines
286 B
PHP
14 lines
286 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Activity\Notifications\Handlers;
|
||
|
|
||
|
use BookStack\Activity\Models\Loggable;
|
||
|
|
||
|
class CommentCreationNotificationHandler implements NotificationHandler
|
||
|
{
|
||
|
public function handle(string $activityType, Loggable|string $detail): void
|
||
|
{
|
||
|
// TODO
|
||
|
}
|
||
|
}
|