class CurlExec
WebDriver\Exception\CurlExec class
@package WebDriver
Hierarchy
- class \WebDriver\Exception extends \WebDriver\Exception
Expanded class hierarchy of CurlExec
1 file declares its use of CurlExec
- CurlService.php in vendor/
lullabot/ php-webdriver/ lib/ WebDriver/ Service/ CurlService.php
File
-
vendor/
lullabot/ php-webdriver/ lib/ WebDriver/ Exception/ CurlExec.php, line 21
Namespace
WebDriver\ExceptionView source
final class CurlExec extends BaseException {
/**
* @var array
*/
private $curlInfo = array();
/**
* Get curl info
*
* @return array
*/
public function getCurlInfo() {
return $this->curlInfo;
}
/**
* Set curl info
*
* @param array $curlInfo
*/
public function setCurlInfo($curlInfo) {
$this->curlInfo = $curlInfo;
}
}