| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-catalog/Block/Product/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-catalog/Block/Product/AwareInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Block\Product;
/**
* Class Product Aware interface
*/
interface AwareInterface
{
/**
* Set product
*
* @param \Magento\Catalog\Api\Data\ProductInterface $product
* @return $this
*/
public function setProduct(\Magento\Catalog\Api\Data\ProductInterface $product);
}