osb/app/Interfaces/IDs.php
2022-02-02 10:43:59 +11:00

20 lines
277 B
PHP

<?php
namespace App\Interfaces;
interface IDs
{
/**
* Return the local ID of the item
*
* @return mixed
*/
public function getLIDAttribute(): string;
/**
* Return the system ID of the item
*
* @return mixed
*/
public function getSIDAttribute(): string;
}