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