ResponseInterface.php 346 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Application response
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App;
  9. /**
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ResponseInterface
  14. {
  15. /**
  16. * Send response to client
  17. *
  18. * @return int|void
  19. */
  20. public function sendResponse();
  21. }