1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Layout\Argument;
- /**
- * Interface of value modification with no value loss
- */
- interface UpdaterInterface
- {
- /**
- * Return modified version of an input value
- *
- * @param mixed $value
- * @return mixed
- */
- public function update($value);
- }
|