openvk/Web/Models/Entities/Notifications/CommentNotification.php
celestora d321b524fd Make comment notifications more informative
Quote length increased to 400 also tags are being stripped now
2022-12-11 16:27:46 +02:00

13 lines
457 B
PHP

<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities\Notifications;
use openvk\Web\Models\Entities\{User, Post, Comment};
final class CommentNotification extends Notification
{
protected $actionCode = 2;
function __construct(User $recipient, Comment $comment, $postable, User $commenter)
{
parent::__construct($recipient, $postable, $commenter, time(), ovk_proc_strtr(strip_tags($comment->getText()), 400));
}
}