Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

4 роки тому
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Bridge\PsrHttpMessage;
  11. use Psr\Http\Message\ResponseInterface;
  12. use Psr\Http\Message\ServerRequestInterface;
  13. use Symfony\Component\HttpFoundation\Request;
  14. use Symfony\Component\HttpFoundation\Response;
  15. /**
  16. * Creates PSR HTTP Request and Response instances from Symfony ones.
  17. *
  18. * @author Kévin Dunglas <dunglas@gmail.com>
  19. */
  20. interface HttpMessageFactoryInterface
  21. {
  22. /**
  23. * Creates a PSR-7 Request instance from a Symfony one.
  24. *
  25. * @param Request $symfonyRequest
  26. *
  27. * @return ServerRequestInterface
  28. */
  29. public function createRequest(Request $symfonyRequest);
  30. /**
  31. * Creates a PSR-7 Response instance from a Symfony one.
  32. *
  33. * @param Response $symfonyResponse
  34. *
  35. * @return ResponseInterface
  36. */
  37. public function createResponse(Response $symfonyResponse);
  38. }