ProcessorInterface.php 473 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App\Config\Data;
  7. /**
  8. * Processes data from admin store configuration fields
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ProcessorInterface
  14. {
  15. /**
  16. * Process config value
  17. *
  18. * @param string $value Raw value of the configuration field
  19. * @return string Processed value
  20. */
  21. public function processValue($value);
  22. }