OptionInterface.php 192 B

1234567891011
  1. <?php
  2. namespace Modules\Common\Repository\Options;
  3. interface OptionInterface
  4. {
  5. /**
  6. * @return array{label: string, value: string|number }
  7. */
  8. public function get(): array;
  9. }