NotificationTableCommand::table()

void table(array $headers, Arrayable|array $rows, string $style = 'default') Format input to textual table. Parameters array $headers Arrayable|array $rows string $style Return Value void

NotificationTableCommand::warn()

void warn(string $string, null|int|string $verbosity = null) Write a string as warning output. Parameters string $string null|int|string $verbosity Return Value void

NotificationTableCommand::__construct()

void __construct(Filesystem $files, Composer $composer) Create a new notifications table command instance. Parameters Filesystem $files Composer $composer Return Value void

NotIn

NotIn class NotIn (View source) Methods void __construct(array $values) Create a new "not in" rule instance. string __toString() Convert the rule to a validation string.

NotIn::__construct()

void __construct(array $values) Create a new "not in" rule instance. Parameters array $values Return Value void

NotIn::__toString()

string __toString() Convert the rule to a validation string. Return Value string

NullBroadcaster

NullBroadcaster class NullBroadcaster extends Broadcaster (View source) Methods $this channel(string $channel, callable $callback) Register a channel authenticator. from Broadcaster 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 = array()) Broadcast the given event.

NullBroadcaster::auth()

mixed auth(Request $request) Authenticate the incoming request for a given channel. Parameters Request $request Return Value mixed

NullBroadcaster::broadcast()

void broadcast(array $channels, string $event, array $payload = array()) Broadcast the given event. Parameters array $channels string $event array $payload Return Value void

NullBroadcaster::channel()

$this channel(string $channel, callable $callback) Register a channel authenticator. Parameters string $channel callable $callback Return Value $this