This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/BrowserKit/AbstractBrowser.php

30 lines
736 B
PHP
Raw Normal View History

2019-03-12 20:10:42 +00:00
<?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
2019-03-12 20:10:42 +00:00
{
}