Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/app/code/Amasty/Rewards/Model/ResourceModel/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Rewards/Model/ResourceModel/FilterExistingEntityInterface.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) 2023 Amasty (https://www.amasty.com)
 * @package Reward Points Base for Magento 2
 */

namespace Amasty\Rewards\Model\ResourceModel;

interface FilterExistingEntityInterface
{
    /**
     * Filter given array of identifiers and return only existing.
     *
     * @param array $ids
     * @return array
     */
    public function execute(array $ids): array;
}