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