mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
13 lines
420 B
PHP
13 lines
420 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
|
use openvk\Web\Models\Entities\{User, Gift};
|
|
|
|
final class CoinsTransferNotification extends Notification
|
|
{
|
|
protected $actionCode = 9602;
|
|
|
|
function __construct(User $receiver, User $sender, int $value, string $message)
|
|
{
|
|
parent::__construct($receiver, $receiver, $sender, time(), $value . " " . $message);
|
|
}
|
|
}
|