* @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 DataRowCollectionPresenterInterface describes a data row collection presenter. */ interface DataRowCollectionPresenterInterface { /** * Present a data row collection into array. * * @param DataRowCollectionInterface $dataRowCollection * * @return array */ public function present(DataRowCollectionInterface $dataRowCollection); }