ValueSourceInterface.php 350 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Data;
  7. /**
  8. * Interface ValueSourceInterface
  9. */
  10. interface ValueSourceInterface
  11. {
  12. /**
  13. * Get value by name
  14. *
  15. * @param string $name
  16. * @return mixed
  17. */
  18. public function getValue($name);
  19. }