mirror of
https://github.com/openvk/openvk
synced 2025-04-21 15:43:03 +03:00
17 lines
383 B
PHP
17 lines
383 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities\Notifications;
|
|
|
|
use openvk\Web\Models\Entities\{User, Club};
|
|
|
|
final class ClubModeratorNotification extends Notification
|
|
{
|
|
protected $actionCode = 5;
|
|
|
|
public function __construct(User $recipient, Club $group, User $admin)
|
|
{
|
|
parent::__construct($recipient, $group, $admin, time(), "");
|
|
}
|
|
}
|