librenms/app/Models/HrDevice.php
Jellyfrog 77c531527c
Apply fixes from StyleCI (#12117)
* Apply fixes from StyleCI

* Disable style check
2020-09-21 14:54:51 +02:00

11 lines
155 B
PHP

<?php
namespace App\Models;
class HrDevice extends DeviceRelatedModel
{
protected $table = 'hrDevice';
protected $primaryKey = 'hrDevice_id';
}