mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 12:15:01 +02:00
21 lines
315 B
PHP
21 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Models;
|
|
|
|
/**
|
|
* @property string $hashid
|
|
*/
|
|
interface HasHashids
|
|
{
|
|
public const ATTRIBUTE_HASHID = 'hashid';
|
|
|
|
/**
|
|
* Get the numbers used to encode the model's hashids.
|
|
*
|
|
* @return int[]
|
|
*/
|
|
public function hashids(): array;
|
|
}
|