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

14 lines
374 B
PHP
Raw Normal View History

2023-07-30 20:03:27 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Entities\Notifications;
use openvk\Web\Models\Entities\{User, Club, Post};
final class PostAcceptedNotification extends Notification
{
protected $actionCode = 6;
function __construct(User $author, Post $post, Club $group)
{
parent::__construct($author, $post, $group, time(), "");
}
}