platform/api/laravel/Contracts/Notifications/Factory.yaml

48 lines
916 B
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: Factory
class_comment: null
dependencies: []
properties: []
methods:
- name: channel
visibility: public
parameters:
- name: name
default: 'null'
comment: '# * Get a channel instance by name.
# *
# * @param string|null $name
# * @return mixed'
- name: send
visibility: public
parameters:
- name: notifiables
- name: notification
comment: '# * Send the given notification to the given notifiable entities.
# *
# * @param \Illuminate\Support\Collection|array|mixed $notifiables
# * @param mixed $notification
# * @return void'
- name: sendNow
visibility: public
parameters:
- name: notifiables
- name: notification
comment: '# * Send the given notification immediately.
# *
# * @param \Illuminate\Support\Collection|array|mixed $notifiables
# * @param mixed $notification
# * @return void'
traits: []
interfaces: []