2020-06-07 19:04:43 +03:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
2022-12-10 22:33:13 +03:00
|
|
|
use openvk\Web\Models\Entities\Postable;
|
2020-06-07 19:04:43 +03:00
|
|
|
use openvk\Web\Models\Entities\User;
|
|
|
|
|
|
|
|
final class MentionNotification extends Notification
|
|
|
|
{
|
|
|
|
protected $actionCode = 4;
|
|
|
|
|
2022-12-10 22:33:13 +03:00
|
|
|
function __construct(User $recipient, Postable $discussionHost, $mentioner, string $quote = "")
|
2020-06-07 19:04:43 +03:00
|
|
|
{
|
2022-12-10 22:33:13 +03:00
|
|
|
parent::__construct($recipient, $mentioner, $discussionHost, time(), $quote);
|
2020-06-07 19:04:43 +03:00
|
|
|
}
|
|
|
|
}
|