20 lines
277 B
PHP
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;
|
|
} |