2022-12-05 23:01:12 +08:00
|
|
|
<?php
|
|
|
|
|
2023-01-11 17:17:36 +08:00
|
|
|
namespace Modules\Common\Repository\Options;
|
2022-12-05 23:01:12 +08:00
|
|
|
|
|
|
|
interface OptionInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return array{label: string, value: string|number }
|
|
|
|
*/
|
|
|
|
public function get(): array;
|
|
|
|
}
|