UpdaterInterface.php 405 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Layout\Argument;
  7. /**
  8. * Interface of value modification with no value loss
  9. */
  10. interface UpdaterInterface
  11. {
  12. /**
  13. * Return modified version of an input value
  14. *
  15. * @param mixed $value
  16. * @return mixed
  17. */
  18. public function update($value);
  19. }