1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Events/Vendor/VendorWasArchived.php
2019-04-20 08:27:37 +10:00

31 lines
436 B
PHP

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