portal.mkgtu.ru/common/components/notification/factories/INotifierFactory.php

15 lines
202 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\notification\factories;
use common\components\notification\ICanNotify;
interface INotifierFactory
{
public function getNotifiers(array $types): array;
}