repo.or.cz
/
openemr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
composer package updates
[openemr.git]
/
vendor
/
illuminate
/
contracts
/
Broadcasting
/
ShouldBroadcast.php
blob
b051e3be3c05940a9415b7d736b69e78c0688280
1
<
?php
2
3
namespace
Illuminate\Contracts\Broadcasting
;
4
5
use
Illuminate\Broadcasting\Channel
;
6
7
interface
ShouldBroadcast
8
{
9
/**
10
* Get the channels the event should broadcast on.
11
*
12
* @return Channel|Channel[]
13
*/
14
public function
broadcastOn
();
15
}