Brak opisu

HttpKernelBrowser.php 662B

12345678910111213141516171819202122232425262728
  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\Component\HttpKernel;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. /**
  14. * Client simulates a browser and makes requests to an HttpKernel instance.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. *
  18. * @method Request getRequest() A Request instance
  19. * @method Response getResponse() A Response instance
  20. */
  21. class HttpKernelBrowser extends Client
  22. {
  23. }