mirror of
https://github.com/flarum/core.git
synced 2025-10-29 14:36:17 +01:00
Implement notifications
This commit is contained in:
14
src/Core/Commands/ReadNotificationCommand.php
Normal file
14
src/Core/Commands/ReadNotificationCommand.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php namespace Flarum\Core\Commands;
|
||||
|
||||
class ReadNotificationCommand
|
||||
{
|
||||
public $notificationId;
|
||||
|
||||
public $user;
|
||||
|
||||
public function __construct($notificationId, $user)
|
||||
{
|
||||
$this->notificationId = $notificationId;
|
||||
$this->user = $user;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user