You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
277 B
16 lines
277 B
<?php
|
|
|
|
namespace App\UI\Enums\Contracts;
|
|
|
|
interface HasLabel
|
|
{
|
|
/**
|
|
* Get the human-readable localized label.
|
|
*/
|
|
public function label(): string;
|
|
|
|
/**
|
|
* Get array of values pair for option select
|
|
*/
|
|
public static function options(): array;
|
|
}
|
|
|