* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Import\File\DataRow; /** * Interface DataRowPresenterInterface describes a data row presenter. */ interface DataRowPresenterInterface { /** * Present a data row. * * @param DataRowInterface $dataRow * * @return array */ public function present(DataRowInterface $dataRow); }