mirror of
https://github.com/openvk/openvk
synced 2025-04-21 15:43:03 +03:00
18 lines
405 B
PHP
18 lines
405 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
|
|
|
use openvk\Web\Models\Entities\{User, Post};
|
|
|
|
final class LikeNotification extends Notification
|
|
{
|
|
protected $actionCode = 0;
|
|
protected $threshold = 120;
|
|
|
|
public function __construct(User $recipient, Post $post, User $liker)
|
|
{
|
|
parent::__construct($recipient, $post, $liker, time(), "");
|
|
}
|
|
}
|