19 lines
229 B
PHP
19 lines
229 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\components\notification;
|
||
|
|
||
|
use common\modules\abiturient\models\File;
|
||
|
|
||
|
interface ICanNotify
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public function send(string $title, string $body, array $user_ids, array $files = []): array;
|
||
|
}
|
||
|
|