NullBroadcaster
class NullBroadcaster extends Broadcaster (View source)
Properties
protected array | $channels | The registered channel authenticators. |
from Broadcaster |
protected BindingRegistrar | $bindingRegistrar | The binding registrar instance. |
from Broadcaster |
Methods
Register a channel authenticator.
Authenticate the incoming request for a given channel.
Extract the parameters from the given pattern and channel.
Extract the channel keys from the incoming channel name.
Resolve the given parameter binding.
Resolve an explicit parameter binding if applicable.
Resolve an implicit parameter binding if applicable.
Determine if a given key and parameter is implicitly bindable.
Format the channel array into an array of strings.
Return the valid authentication response.
Broadcast the given event.
Details
$this
channel(string $channel, callable $callback)
Register a channel authenticator.
protected mixed
verifyUserCanAccessChannel(Request $request, string $channel)
Authenticate the incoming request for a given channel.
protected array
extractAuthParameters(string $pattern, string $channel, callable $callback)
Extract the parameters from the given pattern and channel.
protected array
extractChannelKeys(string $pattern, string $channel)
Extract the channel keys from the incoming channel name.
protected mixed
resolveBinding(string $key, string $value, array $callbackParameters)
Resolve the given parameter binding.
protected mixed
resolveExplicitBindingIfPossible(string $key, mixed $value)
Resolve an explicit parameter binding if applicable.
protected mixed
resolveImplicitBindingIfPossible(string $key, mixed $value, array $callbackParameters)
Resolve an implicit parameter binding if applicable.
protected bool
isImplicitlyBindable(string $key, ReflectionParameter $parameter)
Determine if a given key and parameter is implicitly bindable.
protected array
formatChannels(array $channels)
Format the channel array into an array of strings.
protected BindingRegistrar
binder()
Get the model binding registrar instance.
mixed
auth(Request $request)
Authenticate the incoming request for a given channel.
mixed
validAuthenticationResponse(Request $request, mixed $result)
Return the valid authentication response.
void
broadcast(array $channels, string $event, array $payload = [])
Broadcast the given event.