mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
42 lines
873 B
PHP
42 lines
873 B
PHP
<?php
|
|
/**
|
|
* Payment Ninja (https://paymentninja.com).
|
|
*
|
|
* @link https://github.com/paymentninja/paymentninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Payment Ninja LLC (https://paymentninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Services\Payment;
|
|
|
|
use App\Models\Payment;
|
|
use App\Services\AbstractService;
|
|
use App\Utils\Traits\GeneratesCounter;
|
|
|
|
class ApplyNumber extends AbstractService
|
|
{
|
|
use GeneratesCounter;
|
|
|
|
private $payment;
|
|
|
|
public function __construct(Payment $payment)
|
|
{
|
|
$this->client = $payment->client;
|
|
|
|
$this->payment = $payment;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
if ($this->payment->number != '') {
|
|
return $this->payment;
|
|
}
|
|
|
|
$this->payment->number = $this->getNextPaymentNumber($this->client);
|
|
|
|
return $this->payment;
|
|
}
|
|
}
|