* @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\Export\FileWriter; use PrestaShop\PrestaShop\Core\Export\Data\ExportableDataInterface; use SplFileInfo; /** * Interface FileWriterInterface. */ interface FileWriterInterface { /** * Write data to file. * * @param string $fileName * @param ExportableDataInterface $data * * @return SplFileInfo */ public function write($fileName, ExportableDataInterface $data); }