invoiceninja/app/Events/InvoiceWasCreated.php
Holger Lösken eb049d8ee6 Code Refactoring
- Removed unused uses
- Type hinting for method parameters
- Removed commented code
- Introduced comments for classes and methods
- Short array syntax
2016-07-03 18:11:58 +02:00

28 lines
443 B
PHP

<?php namespace App\Events;
use App\Models\Invoice;
use Illuminate\Queue\SerializesModels;
/**
* Class InvoiceWasCreated
*/
class InvoiceWasCreated extends Event
{
use SerializesModels;
/**
* @var Invoice
*/
public $invoice;
/**
* Create a new event instance.
*
* @param Invoice $invoice
*/
public function __construct(Invoice $invoice)
{
$this->invoice = $invoice;
}
}