1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Review\Block\Form;
- /**
- * Review form block
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Configure extends \Magento\Review\Block\Form
- {
- /**
- * Get review product id
- *
- * @return int
- */
- public function getProductId()
- {
- return (int)$this->getRequest()->getParam('product_id', false);
- }
- }
|