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