openvk/Web/Models/Entities/Notifications/MentionNotification.php
2020-06-07 19:04:43 +03:00

13 lines
373 B
PHP

<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities\Notifications;
use openvk\Web\Models\Entities\User;
final class MentionNotification extends Notification
{
protected $actionCode = 4;
function __construct(User $recipient, User $target, User $mentioner)
{
parent::__construct($recipient, $target, $mentioner, time(), "");
}
}