You've already forked Atomcms-edit
13 lines
181 B
PHP
Executable File
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;
|
|
}
|