Files
librenms-librenms/app/Events/PollingDevice.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
445 B
PHP
Raw Permalink Normal View History

2021-11-17 19:23:55 -06:00
<?php
namespace App\Events;
use App\Models\Device;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PollingDevice
{
use Dispatchable, SerializesModels;
2021-11-17 19:23:55 -06:00
/**
* @var \App\Models\Device
*/
public $device;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Device $device)
{
$this->device = $device;
}
}