mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:57:30 -05:00 
			
		
		
		
	* Fixes for converting quote to invoice * Fixes for naming PDFs * Refresh entity prior to sending * Fixes for subscriptions * Add in required use * Fixes for notifications * Fixes for notifications * Add with trasheD * Rename BillingSubscriptions to Subscriptions * Refactoring subscriptions
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Events\Subscription;
 | 
						|
 | 
						|
use App\Models\Subscription;
 | 
						|
use App\Models\Company;
 | 
						|
use Illuminate\Broadcasting\Channel;
 | 
						|
use Illuminate\Broadcasting\InteractsWithSockets;
 | 
						|
use Illuminate\Broadcasting\PresenceChannel;
 | 
						|
use Illuminate\Broadcasting\PrivateChannel;
 | 
						|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
 | 
						|
use Illuminate\Foundation\Events\Dispatchable;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class SubscriptionWasCreated
 | 
						|
{
 | 
						|
    use Dispatchable, InteractsWithSockets, SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Subscription
 | 
						|
     */
 | 
						|
    public $subscription;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Company
 | 
						|
     */
 | 
						|
    public $company;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    public $event_vars;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct(Subscription $subscription, Company $company, array $event_vars)
 | 
						|
    {
 | 
						|
        $this->subscription = $subscription;
 | 
						|
        $this->company = $company;
 | 
						|
        $this->event_vars = $event_vars;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the channels the event should broadcast on.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Broadcasting\Channel|array
 | 
						|
     */
 | 
						|
    public function broadcastOn()
 | 
						|
    {
 | 
						|
        return new PrivateChannel('channel-name');
 | 
						|
    }
 | 
						|
}
 |