librenms/app/Models/MplsSdp.php
Jellyfrog efb157f5fb
Fix more PHPDoc (#12665)
* Fix PHPDoc

* Fix PHPDoc
2021-03-28 12:18:47 -05:00

47 lines
1015 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use LibreNMS\Interfaces\Models\Keyable;
class MplsSdp extends Model implements Keyable
{
protected $primaryKey = 'sdp_id';
public $timestamps = false;
protected $fillable = [
'sdp_oid',
'device_id',
'sdpRowStatus',
'sdpDelivery',
'sdpDescription',
'sdpAdminStatus',
'sdpOperStatus',
'sdpAdminPathMtu',
'sdpOperPathMtu',
'sdpLastMgmtChange',
'sdpLastStatusChange',
'sdpActiveLspType',
'sdpFarEndInetAddressType',
'sdpFarEndInetAddress',
];
// ---- Helper Functions ----
/**
* Get a string that can identify a unique instance of this model
* @return int
*/
public function getCompositeKey()
{
return $this->sdp_oid;
}
// ---- Define Relationships ----
public function binds()
{
return $this->hasMany(\App\Models\MplsSdpBind::class, 'sdp_id');
}
}