1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/app/Events/Vendor/VendorWasRestored.php
2019-04-20 08:27:37 +10:00

30 lines
422 B
PHP

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