Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-checkout/Block/Cart/Item/Renderer/Actions/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-checkout/Block/Cart/Item/Renderer/Actions/Edit.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Checkout\Block\Cart\Item\Renderer\Actions;

/**
 * @api
 * @since 100.0.2
 */
class Edit extends Generic
{
    /**
     * Get item configure url
     *
     * @return string
     */
    public function getConfigureUrl()
    {
        return $this->getUrl(
            'checkout/cart/configure',
            [
                'id' => $this->getItem()->getId(),
                'product_id' => $this->getItem()->getProduct()->getId()
            ]
        );
    }
}