OptionInterface.php 410 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Validator Constraint Option interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Validator\Constraint;
  9. /**
  10. * Interface \Magento\Framework\Validator\Constraint\OptionInterface
  11. *
  12. */
  13. interface OptionInterface
  14. {
  15. /**
  16. * Get option value
  17. *
  18. * @return mixed
  19. */
  20. public function getValue();
  21. }