openvk/Web/Models/Entities/Notifications/RepostNotification.php

15 lines
407 B
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities\Notifications;
use openvk\Web\Models\Entities\{User, Post};
final class RepostNotification extends Notification
{
protected $actionCode = 1;
protected $threshold = 120;
2020-06-07 19:04:43 +03:00
function __construct(User $recipient, Post $post, User $reposter)
{
parent::__construct($recipient, $post, $reposter, time(), "");
}
}