mirror of
https://github.com/openvk/openvk
synced 2025-04-21 07:33:05 +03:00
18 lines
459 B
PHP
18 lines
459 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
|
|
|
use openvk\Web\Models\Entities\Postable;
|
|
use openvk\Web\Models\Entities\User;
|
|
|
|
final class MentionNotification extends Notification
|
|
{
|
|
protected $actionCode = 4;
|
|
|
|
public function __construct(User $recipient, Postable $discussionHost, $mentioner, string $quote = "")
|
|
{
|
|
parent::__construct($recipient, $mentioner, $discussionHost, time(), $quote);
|
|
}
|
|
}
|