Files
2026-05-09 17:32:17 +02:00

13 lines
181 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\Models\Compositions;
interface HasBadge
{
public function getBadgePath(): string;
public function getBadgeName(): string;
}