* @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\DataCell; /** * Interface DataCellInterface describes a data cell from imported file. */ interface DataCellInterface { /** * Get the value of the cell. * * @return string */ public function getValue(); /** * Get the key of the cell. * * @return string */ public function getKey(); }