mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
14 lines
374 B
PHP
14 lines
374 B
PHP
|
<?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(), "");
|
||
|
}
|
||
|
}
|