25 lines
		
	
	
		
			612 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			612 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Illuminate\Contracts\Notifications;
 | 
						|
 | 
						|
interface Dispatcher
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Send the given notification to the given notifiable entities.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
 | 
						|
     * @param  mixed  $notification
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function send($notifiables, $notification);
 | 
						|
 | 
						|
    /**
 | 
						|
     * Send the given notification immediately.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Support\Collection|array|mixed  $notifiables
 | 
						|
     * @param  mixed  $notification
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function sendNow($notifiables, $notification);
 | 
						|
}
 |