snipe-it/app/Events/LicenseCheckedOut.php
2018-08-06 14:46:10 +02:00

32 lines
658 B
PHP

<?php
namespace App\Events;
use App\Models\Actionlog;
use App\Models\License;
use App\Models\User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class LicenseCheckedOut
{
use Dispatchable, SerializesModels;
public $license;
public $checkedOutTo;
public $logEntry;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(License $license, $checkedOutTo, Actionlog $logEntry)
{
$this->license = $license;
$this->checkedOutTo = $checkedOutTo;
$this->logEntry = $logEntry;
}
}