trait BrowserAuthenticationTrait in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserAuthenticationTrait.php \Zumba\GastonJS\Browser\BrowserAuthenticationTrait
Trait BrowserAuthenticationTrait @package Zumba\GastonJS\Browser
Hierarchy
- trait \Zumba\GastonJS\Browser\BrowserAuthenticationTrait
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Browser/ BrowserAuthenticationTrait.php, line 9
Namespace
Zumba\GastonJS\BrowserView source
trait BrowserAuthenticationTrait {
/**
* Sets basic HTTP authentication
* @param $user
* @param $password
* @return bool
*/
public function setHttpAuth($user, $password) {
return $this
->command('set_http_auth', $user, $password);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BrowserAuthenticationTrait:: |
public | function | Sets basic HTTP authentication |