osb/app/Interfaces/IDs.php
2021-06-30 10:09:18 +10: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;
}