osb/app/Interfaces/IDs.php

20 lines
277 B
PHP
Raw Normal View History

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