1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Events/VendorWasArchived.php
steenrabol eed8ee55a1 Vendor
2016-01-07 16:21:13 +01:00

23 lines
360 B
PHP

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