1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Jobs/SendPushNotification.php
2017-05-29 18:54:37 +03:00

60 lines
1.1 KiB
PHP

<?php
namespace App\Jobs;
use App\Models\Invoice;
use App\Services\PushService;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
/**
* Class SendInvoiceEmail.
*/
class SendPushNotification extends Job implements ShouldQueue
{
use InteractsWithQueue, SerializesModels;
/**
* @var Invoice
*/
protected $invoice;
/**
* @var string
*/
protected $type;
/**
* @var string
*/
protected $server;
/**
* Create a new job instance.
* @param Invoice $invoice
* @param mixed $type
*/
public function __construct($invoice, $type)
{
$this->invoice = $invoice;
$this->type = $type;
$this->server = config('database.default');
}
/**
* Execute the job.
*
* @param PushService $pushService
*/
public function handle(PushService $pushService)
{
if (config('queue.default') !== 'sync') {
$this->invoice->account->loadLocalizationSettings();
}
$pushService->sendNotification($this->invoice, $this->type);
}
}