* @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\Domain\Attachment; interface AttachmentFileUploaderInterface { /** * @param string $filePath * @param string $uniqueFileName * @param int $fileSize * @param int|null $id */ public function upload(string $filePath, string $uniqueFileName, int $fileSize, int $id = null): void; }