mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
11 lines
135 B
PHP
11 lines
135 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Models;
|
|
|
|
interface HasSubtitle
|
|
{
|
|
public function getSubtitle(): string;
|
|
}
|