/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Broadcasting/HasBroadcastChannel.php
20 строк
435 B
Taylor Otwell
[8.x] More Convenient Model Broadcasting (#37491)
01 июн 2021, 17:53
Не верифицирован
01 июн 2021, 17:53
71a83fb
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Broadcasting; interface HasBroadcastChannel { /** * Get the broadcast channel route definition that is associated with the given entity. * * @return string */ public function broadcastChannelRoute(); /** * Get the broadcast channel name that is associated with the given entity. * * @return string */ public function broadcastChannel(); }