17 lines
289 B
PHP
17 lines
289 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pcm\BadgeBundle\Interface;
|
|
|
|
use Pcm\BadgeBundle\Enum\Badge;
|
|
|
|
/**
|
|
* Enables this class to be rendered as a badge using the Badge and BadgeOutline Twig components.
|
|
*/
|
|
interface BadgeableInterface
|
|
{
|
|
public function getBadgeColour(): Badge;
|
|
}
|
|
|