mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-04 21:15:38 -05:00
15 lines
170 B
PHP
15 lines
170 B
PHP
<?php
|
|
|
|
namespace App\Helpers\Invoice;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
class InvoiceCalc
|
|
{
|
|
|
|
public function __construct(Invoice $invoice)
|
|
{
|
|
$this->invoice = $invoice;
|
|
}
|
|
|
|
} |