added invoice model to invoice created event (#3079)

* added model to InvoiceCreatedEvent
* allow to switch formatter locale
This commit is contained in:
Kevin Papst
2022-01-20 18:41:55 +01:00
committed by GitHub
parent fd4cbb43c1
commit 49bb9980b8
8 changed files with 109 additions and 123 deletions

View File

@@ -10,22 +10,27 @@
namespace App\Event;
use App\Entity\Invoice;
use App\Invoice\InvoiceModel;
use Symfony\Contracts\EventDispatcher\Event;
final class InvoiceCreatedEvent extends Event
{
/**
* @var Invoice
*/
private $invoice;
private $model;
public function __construct(Invoice $invoice)
public function __construct(Invoice $invoice, InvoiceModel $model)
{
$this->invoice = $invoice;
$this->model = $model;
}
public function getInvoice(): Invoice
{
return $this->invoice;
}
public function getInvoiceModel(): InvoiceModel
{
return $this->model;
}
}