Fixes for type hints

This commit is contained in:
David Bomba 2022-12-09 08:36:06 +11:00
parent a2e94bb27e
commit 62950e7549
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class InvoiceSum
/** /**
* Constructs the object with Invoice and Settings object. * Constructs the object with Invoice and Settings object.
* *
* @param Invoice $invoice The invoice * @param \App\Models\RecurringInvoice|\App\Models\Quote|\App\Models\Credit|\App\Models\PurchaseOrder|\App\Models\Invoice $invoice The entity
*/ */
public function __construct($invoice) public function __construct($invoice)
{ {

View File

@ -46,7 +46,7 @@ class InvoiceSumInclusive
/** /**
* Constructs the object with Invoice and Settings object. * Constructs the object with Invoice and Settings object.
* *
* @param Invoice $invoice The invoice * @param \App\Models\RecurringInvoice|\App\Models\Quote|\App\Models\Credit|\App\Models\PurchaseOrder|\App\Models\Invoice $invoice The entity
*/ */
public function __construct($invoice) public function __construct($invoice)
{ {