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