2023-01-12 10:42:38 +08:00

12 lines
192 B
PHP

<?php
namespace Modules\Common\Repository\Options;
interface OptionInterface
{
/**
* @return array{label: string, value: string|number }
*/
public function get(): array;
}