/
smoren
/
event-router-php
Обзор
Документация
Войти
/
smoren
/
event-router-php
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Interfaces/EventConfigInterface.php
33 строки
627 B
Smoren
phpdocs++
17 дек 2022, 16:05
17 дек 2022, 16:05
60701dd
Код
Авторство
О чём код?
<?php namespace Smoren\EventRouter\Interfaces; /** * Interface for route rule config */ interface EventConfigInterface { /** * Getter for "origin" property * @return string */ public function getOrigin(): string; /** * Getter for "name" property * @return string|null */ public function getName(): ?string; /** * Getter for "recipients" property * @return string[]|null */ public function getRecipients(): ?array; /** * Getter for "extraFilter" property * @return callable|null */ public function getExtraFilter(): ?callable; }