DIR:/home/htlwork.com/www/dev/pricelow/vendor/magento/framework/Indexer/ |
Current File : /home/htlwork.com/www/dev/pricelow/vendor/magento/framework/Indexer/FieldsetInterface.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Indexer; /** * @api Implement custom Fieldset * @since 100.0.2 */ interface FieldsetInterface { /** * Add additional fields to fieldset * * @param array $data * @return array */ public function addDynamicData(array $data); } |