123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View;
- /**
- * Dummy layout argument updater model
- */
- class LayoutArgumentSimpleUpdater implements \Magento\Framework\View\Layout\Argument\UpdaterInterface
- {
- /**
- * Update specified argument
- *
- * @param int $argument
- * @return int
- */
- public function update($argument)
- {
- $argument++;
- return $argument;
- }
- }
|