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

18 lines
381 B
PHP
Raw Normal View History

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