| Current Path : /home/rtorresani/www/vendor/magento/framework/EntityManager/Operation/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/EntityManager/Operation/UpdateInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\EntityManager\Operation;
use Magento\Framework\EntityManager\OperationInterface;
/**
* Interface for updating entity
*/
interface UpdateInterface extends OperationInterface
{
/**
* Update entity
*
* @param object $entity
* @param array $arguments
* @return object
* @throws \Exception
*/
public function execute($entity, $arguments = []);
}