Files
librenms-librenms/app/Models/MplsService.php
Jellyfrog b14e2d4609 Apply fixes from StyleCI (#15101)
Co-authored-by: StyleCI Bot <bot@styleci.io>
2023-06-13 13:35:00 +02:00

53 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use LibreNMS\Interfaces\Models\Keyable;
class MplsService extends DeviceRelatedModel implements Keyable
{
protected $primaryKey = 'svc_id';
public $timestamps = false;
protected $fillable = [
'svc_oid',
'device_id',
'svcRowStatus',
'svcType',
'svcCustId',
'svcAdminStatus',
'svcOperStatus',
'svcDescription',
'svcMtu',
'svcNumSaps',
'svcNumSdps',
'svcLastMgmtChange',
'svcLastStatusChange',
'svcVRouterId',
'svcTlsMacLearning',
'svcTlsStpAdminStatus',
'svcTlsStpOperStatus',
'svcTlsFdbTableSize',
'svcTlsFdbNumEntries',
];
// ---- Helper Functions ----
/**
* Get a string that can identify a unique instance of this model
*
* @return int
*/
public function getCompositeKey()
{
return $this->svc_oid;
}
// ---- Define Relationships ----
public function binds(): HasMany
{
return $this->hasMany(\App\Models\MplsSdpBind::class, 'svc_id');
}
}