2021-06-29 16:36:34 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Interfaces;
|
|
|
|
|
|
|
|
interface IDs
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return the local ID of the item
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2021-12-24 12:14:01 +11:00
|
|
|
public function getLIDAttribute(): string;
|
2021-06-29 16:36:34 +10:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the system ID of the item
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2021-12-24 12:14:01 +11:00
|
|
|
public function getSIDAttribute(): string;
|
2021-06-29 16:36:34 +10:00
|
|
|
}
|