15 lines
202 B
PHP
15 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\components\notification\factories;
|
||
|
|
||
|
use common\components\notification\ICanNotify;
|
||
|
|
||
|
interface INotifierFactory
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public function getNotifiers(array $types): array;
|
||
|
}
|