BeaconReactivated.php
405 Bytes
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/1/31
* Time: 15:48
*/
namespace App\Events\Backend\Access\Beacon;
use Illuminate\Queue\SerializesModels;
class BeaconReactivated
{
use SerializesModels;
/**
* @var
*/
public $beacon;
/**
* @param $user
*/
public function __construct($beacon)
{
$this->beacon = $beacon;
}
}