AbstractBrowser.php 736 B

123456789101112131415161718192021222324252627282930
  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\BrowserKit;
  11. /**
  12. * Simulates a browser.
  13. *
  14. * To make the actual request, you need to implement the doRequest() method.
  15. *
  16. * HttpBrowser is an implementation that uses the HttpClient component
  17. * to make real HTTP requests.
  18. *
  19. * If you want to be able to run requests in their own process (insulated flag),
  20. * you need to also implement the getScript() method.
  21. *
  22. * @author Fabien Potencier <fabien@symfony.com>
  23. */
  24. abstract class AbstractBrowser extends Client
  25. {
  26. }