mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:27:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Observers;
 | 
						|
 | 
						|
use App\Models\Subscription;
 | 
						|
 | 
						|
class SubscriptionObserver
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Handle the billing_subscription "created" event.
 | 
						|
     *
 | 
						|
     * @param Subscription $billing_subscription
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function created(Subscription $subscription)
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle the billing_subscription "updated" event.
 | 
						|
     *
 | 
						|
     * @param Subscription $billing_subscription
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function updated(Subscription $subscription)
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle the billing_subscription "deleted" event.
 | 
						|
     *
 | 
						|
     * @param Subscription $billing_subscription
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function deleted(Subscription $subscription)
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle the billing_subscription "restored" event.
 | 
						|
     *
 | 
						|
     * @param Subscription $billing_subscription
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function restored(Subscription $subscription)
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle the billing_subscription "force deleted" event.
 | 
						|
     *
 | 
						|
     * @param Subscription $billing_subscription
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function forceDeleted(Subscription $subscription)
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
}
 |