mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
22 lines
402 B
PHP
22 lines
402 B
PHP
<?php
|
|
|
|
namespace Core;
|
|
|
|
/**
|
|
* Notification Interface
|
|
*
|
|
* @package core
|
|
* @author Frederic Guillot
|
|
*/
|
|
interface NotificationInterface
|
|
{
|
|
/**
|
|
* Send notification to someone
|
|
*
|
|
* @access public
|
|
* @param array $user
|
|
* @param string $event_name
|
|
* @param array $event_data
|
|
*/
|
|
public function send(array $user, $event_name, array $event_data);
|
|
}
|