openvk/Web/Models/Entities/Notifications/LikeNotification.php
2020-06-07 19:04:43 +03:00

13 lines
366 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;
function __construct(User $recipient, Post $post, User $liker)
{
parent::__construct($recipient, $post, $liker, time(), "");
}
}