You've already forked Epicnabbo-Catalogus-Updated-Daily
11 lines
155 B
PHP
11 lines
155 B
PHP
<?php
|
|
|
|
namespace App\Models\Compositions;
|
|
|
|
interface HasBadge
|
|
{
|
|
public function getBadgePath(): string;
|
|
|
|
public function getBadgeName(): string;
|
|
}
|