mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
007e8fbdf9
This generalizes the checkout events into the CheckoutableCheckedOut and CheckoutableCheckedIn events.
31 lines
661 B
PHP
31 lines
661 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class CheckoutableCheckedOut
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
public $checkoutable;
|
|
public $checkedOutTo;
|
|
public $checkedOutBy;
|
|
public $note;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($checkoutable, $checkedOutTo, User $checkedOutBy, $note)
|
|
{
|
|
$this->checkoutable = $checkoutable;
|
|
$this->checkedOutTo = $checkedOutTo;
|
|
$this->checkedOutBy = $checkedOutBy;
|
|
$this->note = $note;
|
|
}
|
|
}
|