<?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; }