1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Signifyd\Model\CaseServices;
- use Magento\Signifyd\Api\Data\CaseInterface;
- /**
- * Common abstraction to perform updating operations with Signifyd case entity.
- */
- interface UpdatingServiceInterface
- {
- /**
- * Updates Signifyd Case entity by received data.
- *
- * @param CaseInterface $case
- * @param array $data
- * @return void
- */
- public function update(CaseInterface $case, array $data);
- }
|