1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

Fixes for taxes

This commit is contained in:
David Bomba 2023-04-23 16:59:17 +10:00
parent c4076d8428
commit 91563a4102

View File

@ -118,7 +118,7 @@ class BaseRule implements RuleInterface
protected ?Response $tax_data;
public ?Invoice $invoice;
public mixed $invoice;
public function __construct()
{
@ -129,7 +129,7 @@ class BaseRule implements RuleInterface
return $this;
}
public function setInvoice(Invoice $invoice): self
public function setInvoice(mixed $invoice): self
{
$this->invoice = $invoice;