123456789101112131415161718192021222324252627282930 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\BrowserKit;
- /**
- * Simulates a browser.
- *
- * To make the actual request, you need to implement the doRequest() method.
- *
- * HttpBrowser is an implementation that uses the HttpClient component
- * to make real HTTP requests.
- *
- * If you want to be able to run requests in their own process (insulated flag),
- * you need to also implement the getScript() method.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- abstract class AbstractBrowser extends Client
- {
- }
|