Response.php 382 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * HTTP response implementation that is used instead core one for testing
  8. */
  9. namespace Magento\TestFramework;
  10. /**
  11. * @SuppressWarnings(PHPMD.LongVariable)
  12. */
  13. class Response extends \Magento\Framework\App\Response\Http
  14. {
  15. public function sendResponse()
  16. {
  17. }
  18. }