mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-10-28 13:52:53 -04:00
* minor fixes for name spaces, collector facade and composer version bump * Fixes for invoiceworkflowsettings * Add more context to support emails * Working on Firing Subscriptions * Minor fixes * Fixes for gateway filtering * Checkout Driver
35 lines
611 B
PHP
35 lines
611 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SubscriptionHandler implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
}
|
|
}
|