Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/code/Amasty/ImportCore/Api/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/code/Amasty/ImportCore/Api/BehaviorInterface.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Import Core for Magento 2 (System)
 */

namespace Amasty\ImportCore\Api;

use Amasty\ImportCore\Api\Behavior\BehaviorResultInterface;

/**
 * Import behavior interface
 */
interface BehaviorInterface
{
    /**
     * Performs import behavior
     *
     * @param array $data
     * @param string|null $customIdentifier Custom entity identifier
     * @return BehaviorResultInterface list of processed ids
     */
    public function execute(array &$data, ?string $customIdentifier = null): BehaviorResultInterface;
}