| Current Path : /home/rtorresani/www/vendor/magento/module-checkout/Model/Cart/ |
| Current File : //home/rtorresani/www/vendor/magento/module-checkout/Model/Cart/RequestInfoFilterInterface.php |
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Checkout\Model\Cart;
/**
* Interface RequestInfoFilterInterface used by composite and leafs to implement filtering
* @api
* @since 100.1.2
*/
interface RequestInfoFilterInterface
{
/**
* Filters the data object by an array of parameters
*
* @param \Magento\Framework\DataObject $params
* @return RequestInfoFilterInterface
* @since 100.1.2
*/
public function filter(\Magento\Framework\DataObject $params);
}