Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Migration/Field/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Migration/Field/JobInterface.php

<?php
/**
 * @copyright: Copyright © 2019 Firebear Studio. All rights reserved.
 * @author   : Firebear Studio <fbeardev@gmail.com>
 */

namespace Firebear\ImportExport\Model\Migration\Field;

use Magento\Framework\Exception\LocalizedException;

/**
 * @api
 */
interface JobInterface
{
    /**
     * @param mixed $sourceField
     * @param mixed $sourceValue
     * @param mixed $destinationFiled
     * @param mixed $destinationValue
     * @param array $sourceDataRow
     *
     * @throws LocalizedException
     *
     * @return mixed
     */
    public function job($sourceField, $sourceValue, $destinationFiled, $destinationValue, $sourceDataRow);
}