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