mirror of
https://github.com/openvk/openvk
synced 2024-11-11 17:49:37 +03:00
9336a91623
Signed-off-by: Celestora <kitsuruko@gmail.com>
13 lines
399 B
PHP
13 lines
399 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
|
use openvk\Web\Models\Entities\{User, Gift};
|
|
|
|
final class GiftNotification extends Notification
|
|
{
|
|
protected $actionCode = 9601;
|
|
|
|
function __construct(User $receiver, User $sender, Gift $gift, ?string $comment)
|
|
{
|
|
parent::__construct($receiver, $gift, $sender, time(), $comment ?? "");
|
|
}
|
|
}
|