invoiceninja/app/Events/VendorWasCreated.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

27 lines
431 B
PHP

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