PrintAction.php 710 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Sales\Controller\Guest;
  8. use Magento\Framework\App\Action\Context;
  9. use Magento\Framework\View\Result\PageFactory;
  10. class PrintAction extends \Magento\Sales\Controller\AbstractController\PrintAction
  11. {
  12. /**
  13. * @param Context $context
  14. * @param OrderLoader $orderLoader
  15. * @param PageFactory $resultPageFactory
  16. */
  17. public function __construct(
  18. Context $context,
  19. \Magento\Sales\Controller\Guest\OrderLoader $orderLoader,
  20. PageFactory $resultPageFactory
  21. ) {
  22. parent::__construct($context, $orderLoader, $resultPageFactory);
  23. }
  24. }