Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/module-sales/Controller/Adminhtml/Order/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-sales/Controller/Adminhtml/Order/Shipments.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Sales\Controller\Adminhtml\Order;

class Shipments extends \Magento\Sales\Controller\Adminhtml\Order
{
    /**
     * Generate shipments grid for ajax request
     *
     * @return \Magento\Framework\View\Result\Layout
     */
    public function execute()
    {
        $this->_initOrder();
        $resultLayout = $this->resultLayoutFactory->create();
        return $resultLayout;
    }
}