Remove Interface ID and implement the lid/sid methods in __get()

This commit is contained in:
2025-05-22 17:31:00 +10:00
parent a988720340
commit 1e496a2863
7 changed files with 47 additions and 124 deletions

View File

@@ -1,20 +0,0 @@
<?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;
}