Fenos\Notifynder\Contracts\NotifynderDispatcher::sendWith PHP Метод

sendWith() публичный Метод

Tell the dispatcher to send the notification with a custom (extended method).
public sendWith ( $customMethod )
$customMethod
    public function sendWith($customMethod);

Usage Example

Пример #1
0
 /**
  * Fire method for fire listeners
  * of logic
  *
  * @param  string     $key
  * @param  string     $category_name
  * @param  mixed|null $values
  * @return mixed|null
  */
 public function fire($key, $category_name, $values = [])
 {
     return $this->notifynderDispatcher->sendWith($this->eventSender)->fire($this, $key, $category_name, $values);
 }